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?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…