Google News
logo
Oracle - Interview Questions
What is USING Clause and give example?
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.
Advertisement