编程论坛
注册
登录
编程论坛
→
SQLite论坛
sql服务器中的数据库查询哪些记录不含空值的语句如何写?
sylknb
发布于 2013-09-20 11:59, 5037 次点击
sql服务器中的数据库查询哪些记录含空值的语句 select * from ls where pt is null ,但不含空值的语句如何写?select * from ls where pt no null ,为什么有错?请行家指教!
1 回复
#2
amibeo
2014-07-14 03:56
select * from ls where pt is not null
或者是
select * from ls where pt not is null
1