It depends on the order of the tables. I prefer to think of the * being on the side where all the rows are returned.
--eg
SELECT *
FROM TableA A
    LEFT JOIN TableB B
        ON A.AID = B.AID
-- is either
SELECT *
FROM TableA A, TableB B
WHERE A.AID *= B.AID
-- or
SELECT *
FROM TableA A, TableB B
WHERE B.AID =* A.AID