How does the following compare to a join statement?
SELECT t1.name, t2.salary
FROM employee t1, info t2
WHERE t1.name = t2.name;
would it be the equivalent to this?
SELECT t1.name, t2.salary
FROM employee t1,
INNER JOIN info t2
ON t1.name = t2.name;
or is it more like an outer join?