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 / satya
HERE WE HAVE TOTAL NO. OF TABLE IS 3 SO NO. OF JOIN REQUIRE
IS 2
Thanks
satya
+919916174212
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What is sql injection vulnerability?
What is dialect in sql?
Does oracle roll back the transaction on an error?
how can we destroy the cookie? : Sql dba
how can you create an empty table from an existing table? : Sql dba
how do you tune the slow running queries in oracle db , explain the methodology
How do I find sql profiler?
How to read/write files from pl/sql?
What is trigger explain with example?
does sql support programming? : Sql dba
Can you selectively load only those records that you need? : aql loader
How do I debug a stored procedure?
Can delete statement be rollbacked?
Do prepared statements prevent sql injection?
How do I view a view in sql?