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)
--
Subject
Views
Written By
Posted
Which is faster EQUI-JOIN or INNER JOIN?
6042
November 25, 2004 02:15AM
3833
November 28, 2004 10:47PM
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.