sql >> データベース >  >> RDS >> Oracle

別の列で一致しないデータを選択する方法

    またはanti joinを使用する

    select t1.color, t1.id 
    from 
        tableA t1
    left outer join 
         tableA t2 on t2.id = t1.id and t2.color != t1.color 
    where 
     t1.color in ('red', 'blue')
    and t2.color is null
    


    1. Hibernateクエリ言語で左結合を実行するにはどうすればよいですか?

    2. SQLでASキーワードを使用せずにエイリアシングを実行できる場合、ASキーワードを使用する意味は何ですか?

    3. AndroidSQLiteクエリ-最新の10レコードを取得

    4. SQLServerの特定のテーブルを参照するすべての外部キーを返す