Solved

Which Clause Has the Same Result as the Clause WHERE

Question 1

Multiple Choice

Which clause has the same result as the clause WHERE Clients.ClientID = Projects.ClientID?


A) JOIN Clients.ClientID = Projects.ClientID
B) INNER JOIN Projects ON Clients.ClientID = Projects.ClientID
C) INNER JOIN Clients AND Projects
D) JOIN Clients ON Clients.ClientID AND Projects ON Projects.ClientID

Correct Answer:

verifed

Verified

Related Questions