查询sql中满足某条件的最大值,唯一值

2024-12-29 10:27:42
推荐回答(1个)
回答1:

mysql

select shuliang from 表名 where nick='kint' 
order by timecc desc limit 1

sql server

select top 1 shuliang from 表名 where nick='kint' 
order by timecc desc