KnowledgeBoat Logo

Informatics Practices

How is INTERSECT different from MINUS operation ?

SQL Joins & Grouping

2 Likes

Answer

In SQL, the INTERSECT operator returns rows common to two tables, while the MINUS (EXCEPT) operator retrieves unique rows from the first table that are not in the second table.

Answered By

3 Likes


Related Questions