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
Explain the difference between sql and mysql.
What is sql injection vulnerability?
Why indexing is needed?
Can we call dml statement in function?
What is offset and limit in sql?
Can I join the same table twice?
State some properties of relational databases?
what are enums used for in mysql? : Sql dba
What is foreign key in sql with example?
How to Execute a Package in PL/SQL.?
What is an inner join sql?
How do temporal tables work?
What are the key differences between SQL and PL SQL?
What is the use of <> sql?
Is full outer join same as cross join?