Which clause creates an equijoin between two tables using one column with the same name regardless of datatype?
Answers
Answered by
0
Answer: from join on
Explanation:
SELECT *
FROM tables
From indicates tables
FROM Table1 JOIN Table2
ON Table1.commoncolumn = Table2.commoncolumn
Similar questions