Retrieve data from tables, use to retrieve,
|
|||||||||
Specifies the tables that a SELECT statement retrieves data from. |
|||||||||
Three types of JOIN clauses can be used in the FROM clause to perform relational joins between source tables. The implicit join condition is always Cartesian for source tables without an explicit JOIN clause. The following table outlines the three types of JOIN clauses that can be used in the FROM clause, or click the links for more detailed information about each type of join.
|
|||||||||
The WHERE clause specifies filtering conditions for the SELECT statement. |
|||||||||
Combines rows with field values in common into single rows for the SELECT statement. |
|||||||||
Specifies filtering conditions for a SELECT statement. |
|||||||||
Sorts the rows retrieved by a SELECT statement. |
|||||||||
The query only returns the first N number of rows, respecting any GROUP BY, HAVING, or ORDER BY clauses. |
|||||||||
Concatenates the rows of one table to the end of another table. |