哎,这题目既然没做来
题目大概为:一个表t1存储了用户登陆时间和登户用户名,登陆时间为主键,求出每一位用户最后登陆的时间,表字段为UserName,LoginTime
答案:select UserName,Max(LoginTime) from t1 group by UserName