- SQL Basics
- SQL Introduction
- SQL Syntax
- SQL Sample Database
- SQL SELECT
- SQL WHERE
- SQL ORDER BY
- SQL DISTINCT
- SQL LIMIT
- SQL FETCH
- SQL AND
- SQL OR
- SQL BETWEEN
- SQL IN
- SQL LIKE
- SQL IS NULL
- SQL Comparison Operators
- SQL Logical Operators
- SQL Alias
- SQL CASE
- Joins and Subqueries
- SQL INNER JOIN
- SQL LEFT JOIN
- SQL RIGHT JOIN
- SQL FULL OUTER JOIN
- SQL SELF JOIN
- SQL CROSS JOIN
- SQL Subquery
- SQL Correlated Subquery
- SQL UNION
- SQL INTERSECT
- SQL EXCEPT
- Aggregate Functions
- SQL AVG
- SQL COUNT
- SQL MAX
- SQL MIN
- SQL SUM
- SQL GROUP BY
- SQL HAVING
- SQL ROLLUP
- SQL CUBE
- SQL GROUPING SETS
- Database Management
- SQL CREATE DATABASE
- SQL ALTER DATABASE
- SQL DROP DATABASE
- SQL BACKUP DATABASE
- SQL SHOW DATABASES
- SQL SELECT DATABASE
- Table Management
- SQL CREATE TABLE
- SQL ALTER TABLE
- SQL ADD COLUMN
- SQL DROP COLUMN
- SQL DROP TABLE
- SQL TRUNCATE TABLE
- SQL SHOW TABLES
- SQL RENAME TABLE
- SQL Constraints
- SQL Primary Key
- SQL Foreign Key
- SQL UNIQUE Constraint
- SQL CHECK Constraint
- SQL NOT NULL Constraint
SQL EXCEPT
The EXCEPT operator in SQL is used to return the rows from the first SELECT
query that do not exist in the second SELECT
query. It is the opposite of the INTERSECT
operator, as it helps find records in one result set that are not present in another.
Syntax of SQL EXCEPT
SELECT column1, column2, ...
FROM table1
WHERE condition
EXCEPT
SELECT column1, column2, ...
FROM table2
WHERE condition;
- SELECT statements: The individual queries whose results you want to compare.
- EXCEPT: The operator used to return rows from the first query that do not exist in the second query.
- columns: The number of columns and their data types must be the same in both queries.
Key Points
- The
EXCEPT
operator returns rows from the first query that are not present in the second query. - The
EXCEPT
operator removes duplicates by default. Only unique rows from the first query that do not appear in the second query will be returned. - The number of columns and the data types must match between the two
SELECT
queries. - The order of the queries matters—
EXCEPT
returns the rows from the first query that do not match the second.
Example of SQL EXCEPT
Consider the following two tables:
Table 1: Employees (Department A)
Table 2: Employees (Department B)
Using the EXCEPT
operator, we can find employees in Department A that are not in Department B:
SELECT name, department
FROM employees_1
EXCEPT
SELECT name, department
FROM employees_2;
Output:
Explanation:
- The result set includes only the row(s) from employees_1 that do not have a matching row in employees_2. In this case, "John" is the only employee in Department A who is not in Department B.
SQL EXCEPT with Conditions
You can also apply conditions to both SELECT
queries when using EXCEPT
. For example, you might want to find employees who are only in Department A and not in Department B, while considering a specific department:
SELECT name, department
FROM employees_1
WHERE department = 'HR'
EXCEPT
SELECT name, department
FROM employees_2
WHERE department = 'HR';
Output:
Summary
The EXCEPT operator in SQL is used to find the rows that are present in the first query but not in the second query. It removes duplicates and ensures that only the unique rows from the first query that do not exist in the second query are returned. The number of columns and their data types must be the same in both queries.