MySQL Forums
Forum List  »  Performance

Which is faster EQUI-JOIN or INNER JOIN?
Posted by: sirex
Date: November 25, 2004 02:15AM

which of these joins is faster EQUI-JOIN or INNER

suppose we have two tables: "table1" and "table2" with index on both: "id"

EQUI-JOIN:
--
SELECT *
FROM table1 a, table2 b
WHRE a.id = b.id
--

INNER JOIN
--
SELECT *
FROM table1 a
INNER JOIN table 2 b USING (id)
--

Options: ReplyQuote


Subject
Views
Written By
Posted
Which is faster EQUI-JOIN or INNER JOIN?
5816
November 25, 2004 02:15AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.