求一个sql语句,以id的最小值为查询条件

2024-11-21 22:35:15
推荐回答(1个)
回答1:

要id最小的一条,最简单的语句是:
select top1 * from table order by id
如果一定要使用where条件,那么可以这样写:
select * from table where id=(select min(id) from table)