SQL中的零值

  • 本文关键字:SQL sql null
  • 更新时间 :
  • 英文 :


我有这样的数据

ID Nu     name 
1  234    asd
2  566    asd
3  -      sdf
4  356    sd
5  NULL   sfsg

现在如何获取所有数据使用 - 和null值

select * from table_name; 

这将为您提供所有数据 - 和null值

如果您只想获取nu为null的数据,并且-使用以下方式:

select * 
from table_name 
where nu is null or nu = '-';

我认为这应该有所帮助。

select * from table_name where Nu is null or Nu='-'

要从表中获取所有信息,您可以使用以下查询:

select * from table_name; 

要通过null和dash值过滤,请尝试以下子句:

select * from table_name where nu is null;
UNION ALL
select * from table_name where nu = '-';

相关内容

  • 没有找到相关文章

最新更新