发布网友 发布时间:2022-04-26 23:23
共1个回答
热心网友 时间:2022-06-20 01:13
select * from 表 t where not exists ( select 1 from 表 t1 where t1.id > t.id)追答在另一个提问里面回答了。
select * from 表 t where not exists ( select 1 from 表 t1 where t1.userid = t.userid and t1.id > t.id)