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 ? | 8 Yes | 2 No |
Post New Answer View All Answers
What is the order of sql select?
Is drop table faster than truncate?
Difference between global and parameter variables?
What are sql queries used for?
What are string functions in sql?
Can we call stored procedure in function?
What is the difference between sum and count in sql?
What are sql*plus environment variables?
what is the difference between blob and text? : Sql dba
What is an exception in PL/SQL? What are the two types of exceptions?
what is data manipulation language? : Sql dba
What is pessimistic concurrency control? : Transact sql
tell me about various levels of constraint. : Sql dba
What is anonymous block in sql?
What is difference between db2 and sql?