想从数据库中查询某个字段不为空的所有数据,查询语句怎么写?

时间:2022-01-16 14:45:05
想从数据库中查询某个字段不为空的所有数据,查询语句怎么写?

5 个解决方案

#1


select * from [tb] where [c] is not null and [c]<>''
c为列名,tb为表名

#2


select * from yourTable where yourField is not null

#3


null 和 '' 是不同的

#4


select * from Table where Field not is  null

#5


up

#1


select * from [tb] where [c] is not null and [c]<>''
c为列名,tb为表名

#2


select * from yourTable where yourField is not null

#3


null 和 '' 是不同的

#4


select * from Table where Field not is  null

#5


up