ORACLE中如何用一条SQL语句删除一个表中所有某个列的值为空的数据?

2025-01-20 15:43:22
推荐回答(1个)
回答1:

delete from 表名称 where 列名称 is null;
commit;