📅  最后修改于: 2022-03-11 15:05:29.340000             🧑  作者: Mango
-- The SQL NOT EXISTS Operator will act quite opposite to EXISTS Operator.
-- It is used to restrict the number of rows returned by the SELECT Statement.
SELECT column_name
FROM table_name
WHERE NOT EXISTS (Write Subquery to Check);