Login
Remember
Register
Ask a Question
What is USING Clause and give example?
0
votes
asked
Jan 17, 2024
in
Oracle
by
AdilsonLima
What is USING Clause and give example?
oracle-interview-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 17, 2024
by
AdilsonLima
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.
...