Computer Science, asked by kbjoshi7349, 9 months ago

Which clause creates an equijoin between two tables using one column with the same name regardless of datatype?

Answers

Answered by aindira727
0

Answer: from join on

Explanation:

SELECT *

FROM tables

From indicates tables

FROM Table1 JOIN Table2

ON Table1.commoncolumn = Table2.commoncolumn

Similar questions