Outer Join and Inner Join

Inner Joins or Equality Join

Inner Joins are also called Equijoin, Simple Join or Equality Joins. This creates a Join through commonly named and defined column.

Traditionally WHERE clause is used to specify the relationship between different rows. Beginning with Oracle 9i, support for ANSI-compliant joins are introduced. This uses the Join keyword in the FROM clause. ANSI method has greater portability of SQL code between different DBMS platforms as most relational database are ANSI compliant. The WHERE clause is reserved for conditions that restrict the rows from being returned.

Types of Joins

Performance tuning relates to the activities that make the database perform more efficiently in terms of storage and access speed.