我需要在過程中顯示一個空值列名的列。 每一個幫助將不勝感激。在pl中創建一個空列名的新列sql
Procedure ** IS
result varchar2(100);
cursor a
IS
select
A,
B,
C,
CASE B is null then 'B' else '' end result
from table
where A is null or B is null or C is null
Begin
........
END;
如果列A和C對於特定記錄有空值,我需要包含在結果變量中。
的例外結果
A | B | C | Result
-- | ----| ----| -----
1 | null| 1 | B
null| 2 | null| A C
請表現出一定的樣本數據。 –
我可以使用一個列,但要查找更多的列。 – Cherry