表的名字叫 TblCharinfoTimeLog
人物的名字叫123,求大神幫忙弄個人物123累計在線的語句!!
我寫這個語句!! 可是查詢了123的信息還是 usetime=2 在線時間2分鐘
在線時間累積語句
declare @usetime int
select @usetime=datediff(mm,lastlogin,lastlogout)
from charinfo_time
where charid = @charid
update tblcharinfotimelog
set usetime=usetime+@usetime
where charid = @charid
這幾個命令怎麼寫? usetime累加
select sum(UseTime) from TblCharinfoTimeLog where charid = '123'