oracle数据库中怎么表示数字类型为空,在查询时,查询一列数字类型为空的数据

2024-11-09 09:50:47
推荐回答(3个)
回答1:

select * from 表名 where 字段名 is null;

回答2:

is null

回答3:

"数字类型为空"看不懂,只知道允许表字段为空值
是不是这个意思:
select * from 表名 where 字段名 is null;