I have a table:
mytable:
id
userID
logDate
lastLogDate
For every row in that table, I want to update the 'lastLogDate' column to be the max value of logDate on a per user basis...
Conceptually, each user should have a lastLogDate = the value that is returned by:
select max(logDate) from mytable group by userID
Can somebody help me write the update statement for that?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…