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 / mohan
There should be Three joins in where clause. no point of that the table "atable" is aliased twice. It will treat as two separate tables....
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Can %notfound return null after a fetch?
what are the nonstandard string types? : Sql dba
what are all different types of collation sensitivity? : Sql dba
What are the advantages of sql? Explain
What is sql engine in oracle?
How can we avoid duplicating records in a query?
What is the sql case statement?
What is the usage of the distinct keyword?
How many types of triggers exist in pl/sql?
What is difference sql and mysql?
How can check sql version from command line?
What is varchar sql?
Sql technical questions
What is column?
What is a column in a table?