1.

What is Oracle join syntax?

Answer» EXAMPLE

Here is the syntax:-

SELECT columns

FROM table1

INNER JOIN table2

ON table1.column = table2.column;

An Inner join is ALSO called a SIMPLE join, and it is the MOSTLY used join.



Discussion

No Comment Found