0

Out_Noこの条件の場所をすべて選択したいdoes not exist

(event_type = 'COMMENT_CHANGE' and COMMENTS LIKE 'Cause:%')

サンプルクエリ

select 
       Out_no
from TableA
Where Out_no > '12345'
4

1 に答える 1

0

この質問からの回答を使用することになりました。

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

それが他の人に役立つことを願っています。

于 2013-06-05T18:35:30.040 に答える