Which will be faster out of queries with explicit INNER JOIN and implicit one?

January 29th, 2008 | by Shubhabrata |

Implicit one will be faster.

  1. 6 Responses to “Which will be faster out of queries with explicit INNER JOIN and implicit one?”

  2. By Pooran Jaiswal on Aug 22, 2008 | Reply

    i believe explicit inner join will be faster since in that case mysql doesn’t find the type of join. otherwise it will fetch all the records from both the tables and display it to user.

  3. By Sumesh on Sep 30, 2008 | Reply

    Explain more about explicit & implicit INNER JOIN

  4. By Jolly Martin on Jan 6, 2009 | Reply

    Please explain in brief that why Implicit inner join is faster than explicit inner join?

  5. By jeny on Feb 17, 2009 | Reply

    what is diffenrence betwwen Implicit inner join and explicit inner join

  6. By hemant on Mar 1, 2009 | Reply

    SELECT *
    FROM employee
    INNER JOIN department
    ON employee.DepartmentID = department.DepartmentID

    Example of an implicit inner join:

    SELECT *
    FROM employee, department
    WHERE employee.DepartmentID = department.DepartmentID

    Explicit is given the more performace when the query is where complex with so many table. & so many where condition..

  7. By Moni on Mar 30, 2009 | Reply

    Can anybody Please explain, how Explicit gives more Performance.. as both are taking same time to execute and gives same result…

Post a Comment