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.
SHおよびCHフィルムのいずれかと同じ年に制作されたすべてのフィルムのタイトルと年を表示します。
ジャンル欄の映画と同じ年に製作された映画のタイトルを示す結果表をどのように表示しますか?
テーブル名(映画)年欄(YR)ジャンル欄(ジャンル)ジャンル(SH)(CH)どうやってまとめたらいいのかわからないので、よろしくお願いします。
このようなものはどうですか?
SELECT m1.year, m1.title FROM movies m1 WHERE EXISTS (SELECT 1 FROM movies m2 WHERE m2.genre IN ('SH', 'CH') AND m2.year = m1.year);