Hello All,
I'm trying to find out exactly what JOIN does
eg.
SELECT A.Name
FROM Author A JOIN Publisher P
ON A.SomeID = P.SomeID
WHERE P.Country = 'X'
I know what inner, outer, right and left joins do, but what does just
JOIN on its own do? (Can't find it in help either)
Thanks,
K Finegan