我写这个语句!! 可是查询了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
这几个命令怎么写呢?我需要的是123在线累加时间(charinfo_time是SQL中一个表 其中包含lastlogin,lastlogout)
求大神帮帮忙!!!