Out_No
この条件の場所をすべて選択したいdoes not exist
(event_type = 'COMMENT_CHANGE' and COMMENTS LIKE 'Cause:%')
サンプルクエリ
select
Out_no
from TableA
Where Out_no > '12345'
この質問からの回答を使用することになりました。
select out_no,
from TableA
where out_no > '12345'
and out_no not in
( select
out_no
from TableA
where event_type = 'Comment_change'
and comments like 'Cause%'
)
Order by out_no desc
それが他の人に役立つことを願っています。