DEV Community

Simon O. Injiri
Simon O. Injiri

Posted on

MySQL INTERSECT

Returns distinct rows between two or more queries i.e
(SELECT column_list FROM tabel1 )
INTERSECT
(SELECT column_list table2)

For this, to work both columns must have the dame data types,
columns in both queries, have to match

Top comments (0)