1 SELECT a.field1, b.field2, c.field3, d.field4
2 FROM atable a, atable b, ctable c, dtable d
3 ?
4 ORDER BY 1
What is the minimum number of joins that must be specified
on line 3 in the sample code above to properly link the
tables? Notice that the table "atable" is aliased twice:
once as "a" and once as "b."
1. One join
2. Two joins
3. Three joins
4. Four joins
5. Five joins
Answer Posted / rao
generally if n tables will n-1 joins
here 4 tables 3joins
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
How to look at the current sql*plus system settings?
What is difference between pls_integer and integer?
Is sql better than access?
what is the difference difference between procedure and packages
How do I debug a stored procedure?
What is function and procedure?
What is the reports view in oracle sql developer?
What is sql used for?
Explain what is a field in a database and record in a database?
How can you maintain the integrity of your database on instances where deleting an element in a table result in the deletion of the element(s) within another table?
What is indexes?
what is myisam? : Sql dba
Mention what does plvtab enables you to do when you showthe contents of pl/sql tables?
what are the features and advantages of object-oriented programming? : Sql dba
Can you have more than one trigger on a table?