22,301
社区成员




select top 2 Id from Account
select top 2 Id from Account order by Id desc
select * from (select top 2 Id from Account) as tab
select max(Id) Id from (select top 2 Id from Account) as tab
select max(Id) Id from (select top 2 Id from Account order by id) as tab