Oracle 数据库 没有'', 要查询A没有值的记录,你可以用 select B,C from table where A is null or A =' ' --A=' ' 是查A的值是一个空格的情况,这个得看你添加数据的时候给A是添加的' ' 还是 null 啦
select B,C form 你的表名 where A is null;
select B,C from table where A is NULL