我要选择数据表中其中一个字段为空的记录怎么写SQL语句(50分)

  • 主题发起人 主题发起人 nhjoy
  • 开始时间 开始时间
N

nhjoy

Unregistered / Unconfirmed
GUEST, unregistred user!
例如我有一个表
goodsid name unit
101 aaaa bbbb
102 cccc dddd
eeee ffff
gggg hhhh
我要用QUERY选出最后两条记录。
 
select * from ThisTable
where goodsid=nil
你的 goodsid 是主键吧! 竟然还能为空?
 
select * from 表 where 字段=null
 
select * from 表 where 字段 is null
 
如果空值是null ﹐就同上
select * from table where field is null
如果是有空字串﹐就如下
select * from table where rtrim(field)=''
 
如果空值是null ﹐就同上
select * from table where field is null
如果是有空字串﹐就如下
select * from table where rtrim(field)=''
同意!
 
抱歉,修正错误:
应该是: where goodsid is unll
 
多人接受答案了。
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
928
SUNSTONE的Delphi笔记
S
后退
顶部