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 つのテーブルがあります: Station:-1,2,3,4 など... work:- 2,4,5,6 など ...
ここでは、作業テーブルと比較してステーション テーブルから一意の名前を取得するクエリが必要です。
SELECT field FROM Station WHERE field NOT IN (SELECT field FROM work)
select distinct colname from Station where colname IN (SELECT colname FROM work)