怎样写这样的Select语句?(20分)

  • 主题发起人 主题发起人 sjm
  • 开始时间 开始时间
S

sjm

Unregistered / Unconfirmed
GUEST, unregistred user!
Sql Server 2000数据表1中有个isDel(bit型),其中的值有1、0和null。若想用Select语句将其中是0和null的记录选出来,应该如何写SQL语句?谢谢!
 
select * from table where isdel=1?
 
请问有谁知道?
 
where isdel<>1?
 
select * from 表 where (isdel=0) or (isdel is null)
 
select * from 表 where (isdel=0) or (isdel is null) 正确~
where isdel<>1? 貌似不行
 
select * from 表 where (isdel=0) or (isdel is null)
 
select * from 表 where (isnull(isdel,0)=0)
 
接受答案了.
 

Similar threads

S
回复
0
查看
1K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
900
SUNSTONE的Delphi笔记
S
后退
顶部