I recently found a query where
SELECT *
FROM
Table1, Table2
WHERE Table1.Id = Table2.Id
what is the difference of this compared to a join?
I recently found a query where
SELECT *
FROM
Table1, Table2
WHERE Table1.Id = Table2.Id
what is the difference of this compared to a join?