Solved

The Syntax for a Left Outer Join Is _____

Question 30

Multiple Choice

The syntax for a left outer join is _____.


A) SELECT     column-list
FROM        table1 OUTER JOIN table2 LEFT
WHERE     join-condition
B) SELECT     column-list
FROM table1 LEFT [OUTER] JOIN table2
ON join-condition
C) SELECT     column-list
WHERE     LEFT table1 = table
D) SELECT    column-list
FROM       table1 LEFT table2 [JOIN]
WHERE     join-condition

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions