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

2024年12月01日 14:39
有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