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.
...