0 votes
in Oracle by

What is USING Clause and give example?

1 Answer

0 votes
by

The USING clause is used to specify with the column to test for equality when two tables are joined.

[sql]Select * from employee join salary using employee ID[/sql]

Employee tables join with the Salary tables with the Employee ID.

Related questions

0 votes
asked May 13, 2020 in Oracle by AdilsonLima
0 votes
asked May 11, 2020 in Oracle by JackTerrance
...