2013-06-05 15 views
0

我想选择所有Out_No其中这个条件does not exist如何选择,如果条件不存在

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

样本查询

select 
     Out_no 
from TableA 
Where Out_no > '12345' 

回答

0

我结束了使用的答案从this question

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 

希望它可以帮助别人。

相关问题