Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Join (SQL)

From Wikipedia, the free encyclopedia
(Redirected fromInner join)
SQL clause
AVenn diagram representing the full join SQL statement between tables A and B.

Ajoin clause in the Structured Query Language (SQL) combinescolumns from one or moretables into a new table. The operation corresponds to ajoin operation in relational algebra. Informally, a join stitches two tables and puts on the same row records with matching fields :INNER,LEFT OUTER,RIGHT OUTER,FULL OUTER andCROSS.

Example tables

[edit]

To explain join types, the rest of this article uses the following tables:

Employee table
LastNameDepartmentID
Rafferty31
Jones33
Heisenberg33
Robinson34
Smith34
WilliamsNULL
Department table
DepartmentIDDepartmentName
31Sales
33Engineering
34Clerical
35Marketing

Department.DepartmentID is theprimary key of theDepartment table, whereasEmployee.DepartmentID is aforeign key.

Note that inEmployee, "Williams" has not yet been assigned to a department. Also, no employees have been assigned to the "Marketing" department.

These are the SQL statements to create the above tables:

CREATETABLEdepartment(DepartmentIDINTPRIMARYKEYNOTNULL,DepartmentNameVARCHAR(20));CREATETABLEemployee(LastNameVARCHAR(20),DepartmentIDINTREFERENCESdepartment(DepartmentID));INSERTINTOdepartmentVALUES(31,'Sales'),(33,'Engineering'),(34,'Clerical'),(35,'Marketing');INSERTINTOemployeeVALUES('Rafferty',31),('Jones',33),('Heisenberg',33),('Robinson',34),('Smith',34),('Williams',NULL);

Cross join

[edit]

CROSS JOIN returns theCartesian product of rows from tables in the join. In other words, it will produce rows which combine each row from the first table with each row from the second table.[1]

Employee.LastNameEmployee.DepartmentIDDepartment.DepartmentNameDepartment.DepartmentID
Rafferty31Sales31
Jones33Sales31
Heisenberg33Sales31
Smith34Sales31
Robinson34Sales31
WilliamsNULLSales31
Rafferty31Engineering33
Jones33Engineering33
Heisenberg33Engineering33
Smith34Engineering33
Robinson34Engineering33
WilliamsNULLEngineering33
Rafferty31Clerical34
Jones33Clerical34
Heisenberg33Clerical34
Smith34Clerical34
Robinson34Clerical34
WilliamsNULLClerical34
Rafferty31Marketing35
Jones33Marketing35
Heisenberg33Marketing35
Smith34Marketing35
Robinson34Marketing35
WilliamsNULLMarketing35

Example of an explicit cross join:

SELECT*FROMemployeeCROSSJOINdepartment;

Example of an implicit cross join:

SELECT*FROMemployee,department;

The cross join can be replaced with an inner join with an always-true condition:

SELECT*FROMemployeeINNERJOINdepartmentON1=1;

CROSS JOIN does not itself apply any predicate to filter rows from the joined table. The results of aCROSS JOIN can be filtered using aWHERE clause, which may then produce the equivalent of an inner join.

In theSQL:2011 standard, cross joins are part of the optional F401, "Extended joined table", package.

Normal uses are for checking the server's performance.[why?]

Inner join

[edit]

Aninner join (orjoin) requires each row in the two joined tables to have matching column values, and is a commonly used join operation inapplications but should not be assumed to be the best choice in all situations. Inner join creates a new result table by combining column values of two tables (A and B) based upon the join-predicate. The query compares each row of A with each row of B to find all pairs of rows that satisfy the join-predicate. When the join-predicate is satisfied by matching non-NULL values, column values for each matched pair of rows of A and B are combined into a result row.

The result of the join can be defined as the outcome of first taking thecartesian product (orcross join) of all rows in the tables (combining every row in table A with every row in table B) and then returning all rows that satisfy the join predicate. Actual SQL implementations normally use other approaches, such ashash joins orsort-merge joins, since computing the Cartesian product is slower and would often require a prohibitively large amount of memory to store.

SQL specifies two different syntactical ways to express joins: the "explicit join notation" and the "implicit join notation". The "implicit join notation" is no longer considered a best practice[by whom?], although database systems still support it.

The "explicit join notation" uses theJOIN keyword, optionally preceded by theINNER keyword, to specify the table to join, and theON keyword to specify the predicates for the join, as in the following example:

SELECTemployee.LastName,employee.DepartmentID,department.DepartmentNameFROMemployeeINNERJOINdepartmentONemployee.DepartmentID=department.DepartmentID;
Employee.LastNameEmployee.DepartmentIDDepartment.DepartmentName
Robinson34Clerical
Jones33Engineering
Smith34Clerical
Heisenberg33Engineering
Rafferty31Sales

The "implicit join notation" simply lists the tables for joining, in theFROM clause of theSELECT statement, using commas to separate them. Thus it specifies across join, and theWHERE clause may apply additional filter-predicates (which function comparably to the join-predicates in the explicit notation).

The following example is equivalent to the previous one, but this time using implicit join notation:

SELECTemployee.LastName,employee.DepartmentID,department.DepartmentNameFROMemployee,departmentWHEREemployee.DepartmentID=department.DepartmentID;

The queries given in the examples above will join the Employee and department tables using the DepartmentID column of both tables. Where the DepartmentID of these tables match (i.e. the join-predicate is satisfied), the query will combine theLastName,DepartmentID andDepartmentName columns from the two tables into a result row. Where the DepartmentID does not match, no result row is generated.

Thus the result of theexecution of the query above will be:

Employee.LastNameEmployee.DepartmentIDDepartment.DepartmentName
Robinson34Clerical
Jones33Engineering
Smith34Clerical
Heisenberg33Engineering
Rafferty31Sales

The employee "Williams" and the department "Marketing" do not appear in the query execution results. Neither of these has any matching rows in the other respective table: "Williams" has no associated department, and no employee has the department ID 35 ("Marketing"). Depending on the desired results, this behavior may be a subtle bug, which can be avoided by replacing the inner join with anouter join.

Inner join and NULL values

[edit]

Programmers should take special care when joining tables on columns that can containNULL values, since NULL will never match any other value (not even NULL itself), unless the join condition explicitly uses a combination predicate that first checks that the joins columns are NOT NULL before applying the remaining predicate condition(s). The Inner Join can only be safely used in a database that enforcesreferential integrity or where the join columns are guaranteed not to be NULL. Manytransaction processing relational databases rely onatomicity, consistency, isolation, durability (ACID) data update standards to ensure data integrity, making inner joins an appropriate choice. However, transaction databases usually also have desirable join columns that are allowed to be NULL. Many reporting relational database anddata warehouses use high volumeextract, transform, load (ETL) batch updates which make referential integrity difficult or impossible to enforce, resulting in potentially NULL join columns that an SQL query author cannot modify and which cause inner joins to omit data with no indication of an error. The choice to use an inner join depends on the database design and data characteristics. A left outer join can usually be substituted for an inner join when the join columns in one table may contain NULL values.

Any data column that may be NULL (empty) should never be used as a link in an inner join, unless the intended result is to eliminate the rows with the NULL value. If NULL join columns are to be deliberately removed from theresult set, an inner join can be faster than an outer join because the table join and filtering is done in a single step. Conversely, an inner join can result in disastrously slow performance or even a server crash when used in a large volume query in combination with database functions in an SQL Where clause.[2][3][4] A function in an SQL Where clause can result in the database ignoring relatively compact table indexes. The database may read and inner join the selected columns from both tables before reducing the number of rows using the filter that depends on a calculated value, resulting in a relatively enormous amount of inefficient processing.

When a result set is produced by joining several tables, including master tables used to look up full-text descriptions of numeric identifier codes (aLookup table), a NULL value in any one of the foreign keys can result in the entire row being eliminated from the result set, with no indication of error. A complex SQL query that includes one or more inner joins and several outer joins has the same risk for NULL values in the inner join link columns.

A commitment to SQL code containing inner joins assumes NULL join columns will not be introduced by future changes, including vendor updates, design changes and bulk processing outside of the application's data validation rules such as data conversions, migrations, bulk imports and merges.

One can further classify inner joins as equi-joins, as natural joins, or as cross-joins.

Equi-join

[edit]

Anequi-join is a specific type of comparator-based join, that uses onlyequality comparisons in the join-predicate. Using other comparison operators (such as<) disqualifies a join as an equi-join. The query shown above has already provided an example of an equi-join:

SELECT*FROMemployeeJOINdepartmentONemployee.DepartmentID=department.DepartmentID;

We can write equi-join as below,

SELECT*FROMemployee,departmentWHEREemployee.DepartmentID=department.DepartmentID;

If columns in an equi-join have the same name,SQL-92 provides an optional shorthand notation for expressing equi-joins, by way of theUSING construct:[5]

SELECT*FROMemployeeINNERJOINdepartmentUSING(DepartmentID);

TheUSING construct is more than meresyntactic sugar, however, since the result set differs from the result set of the version with the explicit predicate. Specifically, any columns mentioned in theUSING list will appear only once, with an unqualified name, rather than once for each table in the join. In the case above, there will be a singleDepartmentID column and noemployee.DepartmentID ordepartment.DepartmentID.

TheUSING clause is not supported by MS SQL Server and Sybase.

Natural join

[edit]

The natural join is a special case of equi-join. Natural join (⋈) is abinary operator that is written as (RS) whereR andS arerelations.[6] The result of the natural join is the set of all combinations oftuples inR andS that are equal on their common attribute names. For an example consider the tablesEmployee andDept and their natural join:

Employee
NameEmpIdDeptName
Harry3415Finance
Sally2241Sales
George3401Finance
Harriet2202Sales
Dept
DeptNameManager
FinanceGeorge
SalesHarriet
ProductionCharles
Employee {\displaystyle \bowtie } Dept
NameEmpIdDeptNameManager
Harry3415FinanceGeorge
Sally2241SalesHarriet
George3401FinanceGeorge
Harriet2202SalesHarriet

This can also be used to definecomposition of relations. For example, the composition ofEmployee andDept is their join as shown above, projected on all but the common attributeDeptName. Incategory theory, the join is precisely thefiber product.

The natural join is arguably one of the most important operators since it is the relational counterpart of logical AND. Note that if the same variable appears in each of two predicates that are connected by AND, then that variable stands for the same thing and both appearances must always be substituted by the same value. In particular, the natural join allows the combination of relations that are associated by aforeign key. For example, in the above example a foreign key probably holds fromEmployee.DeptName toDept.DeptName and then the natural join ofEmployee andDept combines all employees with their departments. This works because the foreign key holds between attributes with the same name. If this is not the case such as in the foreign key fromDept.manager toEmployee.Name then these columns have to be renamed before the natural join is taken. Such a join is sometimes also referred to as anequi-join.

More formally the semantics of the natural join are defined as follows:

RS={tstR  sS  Fun(ts)}{\displaystyle R\bowtie S=\left\{t\cup s\mid t\in R\ \land \ s\in S\ \land \ {\mathit {Fun}}(t\cup s)\right\}},

whereFun is apredicate that is true for arelationrif and only ifr is a function. It is usually required thatR andS must have at least one common attribute, but if this constraint is omitted, andR andS have no common attributes, then the natural join becomes exactly the Cartesian product.

The natural join can be simulated with Codd's primitives as follows. Letc1, ...,cm be the attribute names common toR andS,r1, ...,rn be the attribute names unique toR and lets1, ...,sk be the attributes unique toS. Furthermore, assume that the attribute namesx1, ...,xm are neither inR nor inS. In a first step the common attribute names inS can now be renamed:

T=ρx1/c1,,xm/cm(S)=ρx1/c1(ρx2/c2(ρxm/cm(S))){\displaystyle T=\rho _{x_{1}/c_{1},\ldots ,x_{m}/c_{m}}(S)=\rho _{x_{1}/c_{1}}(\rho _{x_{2}/c_{2}}(\ldots \rho _{x_{m}/c_{m}}(S)\ldots ))}

Then we take the Cartesian product and select the tuples that are to be joined:

U=πr1,,rn,c1,,cm,s1,,sk(P){\displaystyle U=\pi _{r_{1},\ldots ,r_{n},c_{1},\ldots ,c_{m},s_{1},\ldots ,s_{k}}(P)}

Anatural join is a type of equi-join where thejoin predicate arises implicitly by comparing all columns in both tables that have the same column-names in the joined tables. The resulting joined table contains only one column for each pair of equally named columns. In the case that no columns with the same names are found, the result is across join.

Most experts agree that NATURAL JOINs are dangerous and therefore strongly discourage their use.[7] The danger comes from inadvertently adding a new column, named the same as another column in the other table. An existing natural join might then "naturally" use the new column for comparisons, making comparisons/matches using different criteria (from different columns) than before. Thus an existing query could produce different results, even though the data in the tables have not been changed, but only augmented. The use of column names to automatically determine table links is not an option in large databases with hundreds or thousands of tables where it would place an unrealistic constraint on naming conventions. Real world databases are commonly designed withforeign key data that is not consistently populated (NULL values are allowed), due to business rules and context. It is common practice to modify column names of similar data in different tables and this lack of rigid consistency relegates natural joins to a theoretical concept for discussion.

The above sample query for inner joins can be expressed as a natural join in the following way:

SELECT*FROMemployeeNATURALJOINdepartment;

As with the explicitUSING clause, only one DepartmentID column occurs in the joined table, with no qualifier:

DepartmentIDEmployee.LastNameDepartment.DepartmentName
34SmithClerical
33JonesEngineering
34RobinsonClerical
33HeisenbergEngineering
31RaffertySales

PostgreSQL, MySQL and Oracle support natural joins; Microsoft T-SQL and IBM DB2 do not. The columns used in the join are implicit so the join code does not show which columns are expected, and a change in column names may change the results. In theSQL:2011 standard, natural joins are part of the optional F401, "Extended joined table", package.

In many database environments the column names are controlled by an outside vendor, not the query developer. A natural join assumes stability and consistency in column names which can change during vendor mandated version upgrades.

Outer join

[edit]

The joined table retains each row—even if no other matching row exists. Outer joins subdivide further into left outer joins, right outer joins, and full outer joins, depending on which table's rows are retained: left, right, or both (in this caseleft andright refer to the two sides of theJOIN keyword). Likeinner joins, one can further sub-categorize all types of outer joins asequi-joins,natural joins,ON<predicate> (θ-join), etc.[8]

No implicit join-notation for outer joins exists in standard SQL.

A Venn diagram showing the left circle and overlapping portion filled.
A Venn diagram representing the left join SQL statement between tables A and B.

Left outer join

[edit]

The result of aleft outer join (or simplyleft join) for tables A and B always contains all rows of the "left" table (A), even if the join-condition does not find any matching row in the "right" table (B). This means that if theON clause matches 0 (zero) rows in B (for a given row in A), the join will still return a row in the result (for that row)—but with NULL in each column from B. Aleft outer join returns all the values from an inner join plus all values in the left table that do not match to the right table, including rows with NULL (empty) values in the link column.

For example, this allows us to find an employee's department, but still shows employees that have not been assigned to a department (contrary to the inner-join example above, where unassigned employees were excluded from the result).

Example of a left outer join (theOUTER keyword is optional), with the additional result row (compared with the inner join) italicized:

SELECT*FROMemployeeLEFTOUTERJOINdepartmentONemployee.DepartmentID=department.DepartmentID;
Employee.LastNameEmployee.DepartmentIDDepartment.DepartmentNameDepartment.DepartmentID
Jones33Engineering33
Rafferty31Sales31
Robinson34Clerical34
Smith34Clerical34
WilliamsNULLNULLNULL
Heisenberg33Engineering33

Alternative syntaxes

[edit]

Oracle supports the deprecated[9] syntax:

SELECT*FROMemployee,departmentWHEREemployee.DepartmentID=department.DepartmentID(+)

Sybase supports the syntax (Microsoft SQL Server deprecated this syntax since version 2000):

SELECT*FROMemployee,departmentWHEREemployee.DepartmentID*=department.DepartmentID

IBM Informix supports the syntax:

SELECT*FROMemployee,OUTERdepartmentWHEREemployee.DepartmentID=department.DepartmentID
A Venn diagram show the right circle and overlapping portions filled.
A Venn diagram representing the right join SQL statement between tables A and B.

Right outer join

[edit]

Aright outer join (orright join) closely resembles a left outer join, except with the treatment of the tables reversed. Every row from the "right" table (B) will appear in the joined table at least once. If no matching row from the "left" table (A) exists, NULL will appear in columns from A for those rows that have no match in B.

A right outer join returns all the values from the right table and matched values from the left table (NULL in the case of no matching join predicate). For example, this allows us to find each employee and his or her department, but still show departments that have no employees.

Below is an example of a right outer join (theOUTER keyword is optional), with the additional result row italicized:

SELECT*FROMemployeeRIGHTOUTERJOINdepartmentONemployee.DepartmentID=department.DepartmentID;
Employee.LastNameEmployee.DepartmentIDDepartment.DepartmentNameDepartment.DepartmentID
Smith34Clerical34
Jones33Engineering33
Robinson34Clerical34
Heisenberg33Engineering33
Rafferty31Sales31
NULLNULLMarketing35

Right and left outer joins are functionally equivalent. Neither provides any functionality that the other does not, so right and left outer joins may replace each other as long as the table order is switched.

A Venn diagram showing the right circle, left circle, and overlapping portion filled.
A Venn diagram representing the full join SQL statement between tables A and B.

Full outer join

[edit]

Conceptually, afull outer join combines the effect of applying both left and right outer joins. Where rows in the full outer joined tables do not match, the result set will have NULL values for every column of the table that lacks a matching row. For those rows that do match, a single row will be produced in the result set (containing columns populated from both tables).

For example, this allows us to see each employee who is in a department and each department that has an employee, but also see each employee who is not part of a department and each department which doesn't have an employee.

Example of a full outer join (theOUTER keyword is optional):

SELECT*FROMemployeeFULLOUTERJOINdepartmentONemployee.DepartmentID=department.DepartmentID;
Employee.LastNameEmployee.DepartmentIDDepartment.DepartmentNameDepartment.DepartmentID
Smith34Clerical34
Jones33Engineering33
Robinson34Clerical34
WilliamsNULLNULLNULL
Heisenberg33Engineering33
Rafferty31Sales31
NULLNULLMarketing35

Some database systems do not support the full outer join functionality directly, but they can emulate it through the use of an inner join and UNION ALL selects of the "single table rows" from left and right tables respectively. The same example can appear as follows:

SELECTemployee.LastName,employee.DepartmentID,department.DepartmentName,department.DepartmentIDFROMemployeeINNERJOINdepartmentONemployee.DepartmentID=department.DepartmentIDUNIONALLSELECTemployee.LastName,employee.DepartmentID,cast(NULLasvarchar(20)),cast(NULLasinteger)FROMemployeeWHERENOTEXISTS(SELECT*FROMdepartmentWHEREemployee.DepartmentID=department.DepartmentID)UNIONALLSELECTcast(NULLasvarchar(20)),cast(NULLasinteger),department.DepartmentName,department.DepartmentIDFROMdepartmentWHERENOTEXISTS(SELECT*FROMemployeeWHEREemployee.DepartmentID=department.DepartmentID)

Another approach could be UNION ALL of left outer join and right outer join MINUS inner join.

Self-join

[edit]

A self-join is joining a table to itself.[10]

Example

[edit]

If there were two separate tables for employees and a query which requested employees in the first table having the same country as employees in the second table, a normal join operation could be used to find the answer table. However, all the employee information is contained within a single large table.[11]

Consider a modifiedEmployee table such as the following:

Employee Table
EmployeeIDLastNameCountryDepartmentID
123RaffertyAustralia31
124JonesAustralia33
145HeisenbergAustralia33
201RobinsonUnited States34
305SmithGermany34
306WilliamsGermanyNULL

An example solution query could be as follows:

SELECTF.EmployeeID,F.LastName,S.EmployeeID,S.LastName,F.CountryFROMEmployeeFINNERJOINEmployeeSONF.Country=S.CountryWHEREF.EmployeeID<S.EmployeeIDORDERBYF.EmployeeID,S.EmployeeID;

Which results in the following table being generated.

Employee Table after Self-join by Country
EmployeeIDLastNameEmployeeIDLastNameCountry
123Rafferty124JonesAustralia
123Rafferty145HeisenbergAustralia
124Jones145HeisenbergAustralia
305Smith306WilliamsGermany

For this example:

  • F andS arealiases for the first and second copies of the employee table.
  • The conditionF.Country = S.Country excludes pairings between employees in different countries. The example question only wanted pairs of employees in the same country.
  • The conditionF.EmployeeID < S.EmployeeID excludes pairings where theEmployeeID of the first employee is greater than or equal to theEmployeeID of the second employee. In other words, the effect of this condition is to exclude duplicate pairings and self-pairings. Without it, the following less useful table would be generated (the table below displays only the "Germany" portion of the result):
EmployeeIDLastNameEmployeeIDLastNameCountry
305Smith305SmithGermany
305Smith306WilliamsGermany
306Williams305SmithGermany
306Williams306WilliamsGermany

Only one of the two middle pairings is needed to satisfy the original question, and the topmost and bottommost are of no interest at all in this example.

Alternatives

[edit]

The effect of an outer join can also be obtained using a UNION ALL between an INNER JOIN and a SELECT of the rows in the "main" table that do not fulfill the join condition. For example,

SELECTemployee.LastName,employee.DepartmentID,department.DepartmentNameFROMemployeeLEFTOUTERJOINdepartmentONemployee.DepartmentID=department.DepartmentID;

can also be written as

SELECTemployee.LastName,employee.DepartmentID,department.DepartmentNameFROMemployeeINNERJOINdepartmentONemployee.DepartmentID=department.DepartmentIDUNIONALLSELECTemployee.LastName,employee.DepartmentID,cast(NULLasvarchar(20))FROMemployeeWHERENOTEXISTS(SELECT*FROMdepartmentWHEREemployee.DepartmentID=department.DepartmentID)

Implementation

[edit]
A query plan for the triangle query R(A, B) ⋈ S(B, C) ⋈ T(A, C) that uses binary joins. It joins S and T first, then joins the result with R.
A query plan for the triangle query R(A, B) ⋈ S(B, C) ⋈ T(A, C) that uses binary joins. It joins R and S first, then joins the result with T.
Two possiblequery plans for thetriangle queryR(A, B) ⋈ S(B, C) ⋈ T(A, C); the first joinsS andT first and joins the result withR, the second joinsR andS first and joins the result withT

Much work in database-systems has aimed at efficient implementation of joins, because relational systems commonly call for joins, yet face difficulties in optimising their efficient execution. The problem arises because inner joins operate bothcommutatively andassociatively. In practice, this means that the user merely supplies the list of tables for joining and the join conditions to use, and the database system has the task of determining the most efficient way to perform the operation. The choices become more complex as the number of tables involved in a query increases, with each table having different characteristics in record count, average record length (considering NULL fields) and available indexes. Where Clause filters can also significantly impact query volume and cost.

Aquery optimizer determines how to execute a query containing joins. A query optimizer has two basic freedoms:

  1. Join order: Because it joins functions commutatively and associatively, the order in which the system joins tables does not change the final result set of the query. However, join-ordercould have an enormous impact on the cost of the join operation, so choosing the best join order becomes very important.
  2. Join method: Given two tables and a join condition, multiplealgorithms can produce the result set of the join. Which algorithm runs most efficiently depends on the sizes of the input tables, the number of rows from each table that match the join condition, and the operations required by the rest of the query.

Many join-algorithms treat their inputs differently. One can refer to the inputs to a join as the "outer" and "inner" join operands, or "left" and "right", respectively. In the case of nested loops, for example, the database system will scan the entire inner relation for each row of the outer relation.

One can classify query-plans involving joins as follows:[12]

left-deep
using a base table (rather than another join) as the inner operand of each join in the plan
right-deep
using a base table as the outer operand of each join in the plan
bushy
neither left-deep nor right-deep; both inputs to a join may themselves result from joins

These names derive from the appearance of thequery plan if drawn as atree, with the outer join relation on the left and the inner relation on the right (as convention dictates).

Join algorithms

[edit]
An illustration of properties of join algorithms. When performing a join between more than two relations on more than two attributes, binary join algorithms such ashash join operate over two relations at a time, and join them on all attributes in the join condition;worst-case optimal algorithms such as generic join operate on a single attribute at a time but join all the relations on this attribute.[13]

Three fundamental algorithms for performing a binary join operation exist:nested loop join,sort-merge join andhash join.Worst-case optimal join algorithms are asymptotically faster than binary join algorithms for joins between more than two relations in theworst case.

Join indexes

[edit]

Join indexes aredatabase indexes that facilitate the processing of join queries indata warehouses: they are currently (2012) available in implementations byOracle[14] andTeradata.[15]

In the Teradata implementation, specified columns, aggregate functions on columns, or components of date columns from one or more tables are specified using a syntax similar to the definition of adatabase view: up to 64 columns/column expressions can be specified in a single join index. Optionally, a column that defines theprimary key of the composite data may also be specified: on parallel hardware, the column values are used to partition the index's contents across multiple disks. When the source tables are updated interactively by users, the contents of the join index are automatically updated. Any query whose WHERE clause specifies any combination of columns or column expressions that are an exact subset of those defined in a join index (a so-called "covering query") will cause the join index, rather than the original tables and their indexes, to be consulted during query execution.

The Oracle implementation limits itself to usingbitmap indexes. Abitmap join index is used for low-cardinality columns (i.e., columns containing fewer than 300 distinct values, according to the Oracle documentation): it combines low-cardinality columns from multiple related tables. The example Oracle uses is that of an inventory system, where different suppliers provide different parts. Theschema has three linked tables: two "master tables", Part and Supplier, and a "detail table", Inventory. The last is a many-to-many table linking Supplier to Part, and contains the most rows. Every part has a Part Type, and every supplier is based in the US, and has a State column. There are not more than 60 states+territories in the US, and not more than 300 Part Types. The bitmap join index is defined using a standard three-table join on the three tables above, and specifying the Part_Type and Supplier_State columns for the index. However, it is defined on the Inventory table, even though the columns Part_Type and Supplier_State are "borrowed" from Supplier and Part respectively.

As for Teradata, an Oracle bitmap join index is only utilized to answer a query when the query's WHERE clause specifies columns limited to those that are included in the join index.

Straight join

[edit]

Some database systems allow the user to force the system to read the tables in a join in a particular order. This is used when the join optimizer chooses to read the tables in an inefficient order. For example, inMySQL the commandSTRAIGHT_JOIN reads the tables in exactly the order listed in the query.[16]

See also

[edit]

References

[edit]

Citations

[edit]
  1. ^SQL CROSS JOIN
  2. ^Greg Robidoux, "Avoid SQL Server functions in the WHERE clause for Performance", MSSQL Tips, 3 May 2007
  3. ^Patrick Wolf, "Inside Oracle APEX "Caution when using PL/SQL functions in a SQL statement", 30 November 2006
  4. ^Gregory A. Larsen, "T-SQL Best Practices - Don't Use Scalar Value Functions in Column List or WHERE Clauses", 29 October 2009,
  5. ^Simplifying Joins with the USING Keyword
  6. ^InUnicode, the bowtie symbol is ⋈ (U+22C8).
  7. ^Ask Tom "Oracle support of ANSI joins."Back to basics: inner joins » Eddie Awad's BlogArchived 2010-11-19 at theWayback Machine
  8. ^Silberschatz, Abraham;Korth, Hank; Sudarshan, S. (2002). "Section 4.10.2: Join Types and Conditions".Database System Concepts (4th ed.). McGraw-Hill. p. 166.ISBN 0072283637.
  9. ^Oracle Left Outer Join
  10. ^Shah 2005, p. 165
  11. ^Adapted fromPratt 2005, pp. 115–6
  12. ^Yu & Meng 1998, p. 213
  13. ^Wang, Yisu Remy; Willsey, Max; Suciu, Dan (2023-01-27). "Free Join: Unifying Worst-Case Optimal and Traditional Joins".arXiv:2301.10841 [cs.DB].
  14. ^Oracle Bitmap Join Indexes."Database Concepts - 5 Indexes and Index-Organized Tables - Bitmap Join Indexes". Retrieved2024-06-23.
  15. ^Teradata Join Indexes."SQL Data Definition Language Syntax and Examples - CREATE JOIN INDEX". Retrieved2024-06-23.
  16. ^"13.2.9.2 JOIN Syntax".MySQL 5.7 Reference Manual.Oracle Corporation. Retrieved2015-12-03.

Sources

[edit]

External links

[edit]
Versions
Keywords
Related
ISO/IEC SQL parts
Retrieved from "https://en.wikipedia.org/w/index.php?title=Join_(SQL)&oldid=1274538111#Inner_join"
Category:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp