M
mr.zy
Unregistered / Unconfirmed
GUEST, unregistred user!
Table1
ID Name Date
1 李三 2002-10-2
2 李四 2002-10-3
3 李三 2002-10-8
问题: 如何把第3条找出来?也就是找到李三在这个表中的最后的日期(最新日期)?
这样老出错: select * from Table1 where name = '李三' and Max(Date);
ID Name Date
1 李三 2002-10-2
2 李四 2002-10-3
3 李三 2002-10-8
问题: 如何把第3条找出来?也就是找到李三在这个表中的最后的日期(最新日期)?
这样老出错: select * from Table1 where name = '李三' and Max(Date);