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