Example & Tutorial understanding programming in easy ways.

If we have a two table of same structure and same column and we want to fetch common record from both the table then what we do?

We do the INTERSECTION of the two table to get the common records from both of tables.


Syntax:

SELECT * FROM table1 INTERSECTION table2.

Read More →