Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
それぞれに同じ列を持つ2つのテーブルがあります..それを色と呼びましょう。この 2 つを比較して、テーブル A にはないテーブル B の固有の色を表示するにはどうすればよいですか?
select b.color from tbl1 b where not exists (select * from tbl2 a where b.color=a.color)
SELECT b.color AS color FROM tableB b LEFT JOIN tableA a ON a.color = b.color WHERE a.color IS NULL;