首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

求一句最后登录时间的话语

2013-11-29 
求一句最后登录时间的语句表LoginLog列userName,Date用户每次登录都会记录一条信息,每个用户有多条记录。现

求一句最后登录时间的语句
表LoginLog
列userName,Date

用户每次登录都会记录一条信息,每个用户有多条记录。
现在想要查询userName为user1、user2、user3、user4、user5、user6这些用户的最后一次的登录时间,要怎么写啊
[解决办法]
select username,max(date)date
from loginlog
where username in (user1,user2,user3,user4,user5,user6....)
group by username
[解决办法]
查看有用户

select userName,max(Date) as Date from LoginLog group by userName

查指定用户字符类型时用上引号
select userName,max(Date) as Date from LoginLog where userName in('Roy_88','wuxi_88',‘...’) group by userName

热点排行