을 감안할 때이 :존재 여부에 관계없이 값을 반환하도록 쿼리를 작성하는 방법은 무엇입니까?
with data_row as (select 1 as col_1 from dual)
select 'Y' as row_exists from dual where exists
(select null
from data_row
where col_1 in (2,1))
어떻게이받을 수 있나요?
Col_1 Row_exists
--------------------
1 Y
2 N
감안할 때 ..이 대답을 찾으십시오. – SriniV