select 语句
select * from table_name where column_value="
这个语句在oracle 中有什么问题吗?
select * from table_name where column_value="
这个语句在oracle 中有什么问题吗?
select * from table_name where column_value is null
同意楼上的
在oracle里null和空是不一样的!
select * from table_name where column_value=' ';
' '和null是不一样的
應該是不一樣得
select * from table_name where column_value='';或collumn_value is null
首先使用有问题,要用单引号
其次,如果你想查询null的情况,使用=''是不可以的,必须用is null操作