发布网友 发布时间:2022-05-05 04:22
共2个回答
懂视网 时间:2022-05-05 08:44
如题,我在网上也找过相关解决方法,很多解答都是这么一句SQL语句:
解决方法:
select * from AccountMark as b where not exists(select 1 from AccountMark where AccountId= b.AccountId
and b.CreateTime<CreateTime )
热心网友 时间:2022-05-05 05:52
可直接用嵌套查询。
方法如下:
如数据:
id name
1 a
1 b
2 c
2 d
3 e
3 f
3 g
3 h
select count(t.counts) from
(select id,count(*) counts from 表名 group by id) t
这样得到的结果就是3。