where we have to use ON clause and where we have to use USING
clause in JOINS
Answer Posted / 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 View All Answers
How to shutdown your 10g xe server?
How to create tables for odbc connection testing?
How are extents allocated to a segment?
What is an Oracle index?
Difference between pre-select and pre-query
Can we write dml statement in function in oracle?
Explain the blob datatype?
How to retrieve the count of updated rows?
What is raw datatype in oracle?
How can we force the database to use the user specified rollback segment?
What are the limitations of check constraint?
What is the usage of synonyms?
Why do we need oracle client?
How do you bind variables in oracle?
How to convert csv to table in oracle?