SQL ClausesΒΆ
Clause |
Description |
---|---|
Simplifies range tests by returning TRUE when the input is within two boundaries |
|
Returns only unique (distinct) values from a column or a set of columns, eliminating duplicate rows in the result set |
|
Tests for the existence of any rows in a subquery |
|
Groups rows that have the same values in specified columns into summary rows, like aggregating data |
|
Filters groups of rows created by the GROUP BY clause |
|
Tests if an expression is contained in a list of values |
|
Combine rows from two or more tables, based on a related column between them |
|
Specifies the maximum number of rows that should be returned in the result set |
|
Skips a specified number of rows before returning the result set |
|
Sorts the result set of a query by one or more columns |
|
Combine the result sets of two or more |
|
Filters records that meet a specified condition |