怎么找出stuid字段中,空数据中id最小的,也就是用sql语句实现找出id为3的那一行。

2024-12-01 14:39:47
推荐回答(3个)
回答(1):

不知道你什么数据库啊

如果是 sql server 的话

SELECT TOP 1 * FROM zuowei WHERE stuid is NULL ORDER BY id;

回答(2):

select min(id) from zuowei where stuid is null

回答(3):

select * from 表 where stuid in not null order by id