where we have to use ON clause and where we have to use USING
clause in JOINS

Answers were Sorted based on User's Feedback



where we have to use ON clause and where we have to use USING clause in JOINS..

Answer / saiprasanna

in ansi style the join condn can be given bu using "ON-clause"
or by using "USING-clause".
"USING" clause can be used if common column name is same other
wise "ON" clause is used.
ex:-select e.ename,d.dname from emp e join dept d on e.deptno
=d.deptno;
select e.ename,d.dname from emp e join dept d using(deptno);

Is This Answer Correct ?    3 Yes 0 No

where we have to use ON clause and where we have to use USING clause in JOINS..

Answer / vipul.solanki

It gives same result.when colum name is same then we can use
Using clause

with use USING :

SELECT * FROM MENU_MASTER MM JOIN MENU_ROLE_METRIX MRM
USING(NMENUNO);

with use ON :

SELECT * FROM MENU_MASTER MM JOIN MENU_ROLE_METRIX MRM ON
MM.NMENUNO = MRM.NMENUNO;

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Oracle General Interview Questions

What is system tablespace?

0 Answers  


How to define a variable of a specific record type?

0 Answers  


What is memory advisor in Oracle?

0 Answers   MCN Solutions,


What is an Index Segment ?

2 Answers  


What is Network Database link ?

1 Answers  






how to make an oracle object

0 Answers  


Why cursor variables are easier to use than cursors?

0 Answers  


How to connect the oracle server as sysdba?

0 Answers  


What is meant by redo log buffer ?

2 Answers  


what is view?

7 Answers   Accenture,


In XIR2 if we lost the administration password .How can we regain the password?thanks in advance.

0 Answers   IBM,


What is SAVE POINT ?

5 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)