如圖,SQL數據庫中一個表(TblCharinfoTimeLog)其中的列
我現在用sum積累select sum(usetime) as usetime from TblCharinfoTimeLog where charid='"&123&"'" 算出123的這幾天的在線時間的總和了。
但是
set rs4 = Server.CreateObject("ADODB.Recordset")
select sum(usetime) as usetime from TblCharinfoTimeLog where charid='"&123&"'"
rs4.open sql2,conn1,1,2
rs4("usetime")=("usetime")-10
rs4.update
寫出來了,可是查詢了下123的時間還是沒減少,請問大神哪裡出了問題。。在線等!!感激不盡!!!!!
while rs4.eof
rs4!usetime=rs4!usetime-10
rs4.movenext
wend
這樣看看