显示与任何 SH 或 CH 视频在同一年制作的所有非 SH 和非 CH 电影的标题和年份

Display the title and year of all non SH and non CH films that were produced in the same year as any of the SH or CH videos were produced

好的,所以我遇到了 SQL 问题。我有上一个问题的一些代码,我觉得它必须以某种方式与这个问题一起实现。

SELECT m1.production_year, m1.title
FROM movie m1
WHERE EXISTS (SELECT 1
FROM movie m2
WHERE m2.genre_code IN ('SH', 'CH')
AND m1.production_year < m2.production_year);

现在,如何在 genre_code 中排除显示任何 SH 和 CH 的行?

SELECT
    m1.production_year, m1.title
FROM
    movie m1
WHERE
    m1.genre_code NOT IN ('SH', 'CH')
    AND m1.production_year IN (
        SELECT m2.production_year FROM movie m2 WHERE m2.genre_code IN ('SH', 'CH')
        )