新建查询,然后写语句
use 数据库名go
select 姓名,Max(分值) As 最高分 from 表名 group by 姓名
这样就好了,不要想复杂了
select * from test where created_at=(select max(created_at) from test group by DATE_FORMAT(created_at,'%Y%m%d'))欢迎分享,转载请注明来源:内存溢出
新建查询,然后写语句
use 数据库名go
select 姓名,Max(分值) As 最高分 from 表名 group by 姓名
这样就好了,不要想复杂了
select * from test where created_at=(select max(created_at) from test group by DATE_FORMAT(created_at,'%Y%m%d'))欢迎分享,转载请注明来源:内存溢出
评论列表(0条)