Let's assume we have these three Tables:
Sailors (sid, name, rating), Reserve (sid, bid, day) and Boat(bid,name,color)
I want to JOIN the Table Sailors with the Table Reserve. Are the following statements equivalent? Is someone more effective?
SELECT S.sid, S.name, R.bid
FROM Sailors as S,
Reserves as R
WHERE S.sid = R.sid
SELECT S.sid, S.name, R.bid
FROM Sailors as S
INNER JOIN Reserves as R ON S.sid = R.sid
Thanks in advance!