我想比较多列的NULL值.例如.假设我的表中有3列,我必须从中找到NOT NULL值.我使用以下代码:
select * from table1 where column1 is not null and column2 is not null and column3 is not null
我不想使用此代码,因为如果列继续增加,它会多次使用"和".在Oracle 11g中有人可以选择这个吗?
sql oracle
oracle ×1
sql ×1