SQL Basic
SQL Advanced
SQL Functions
| SQL Between |
|
The BETWEEN operator is used in a WHERE clause to select a range of data between two values. The BETWEEN OperatorThe BETWEEN operator selects a range of data between two values. The values can be numbers, text, or dates. SQL BETWEEN Syntax
BETWEEN Operator ExampleThe "Persons" table:
Now we want to select the persons with a last name alphabetically between "Hansen" and "Pettersen" from the table above. We use the following SELECT statement:
The result-set will look like this:
Note: The BETWEEN operator is treated differently in different databases. In some databases, persons with the LastName of "Hansen" or "Pettersen" will not be listed, because the BETWEEN operator only selects fields that are between and excluding the test values). In other databases, persons with the LastName of "Hansen" or "Pettersen" will be listed, because the BETWEEN operator selects fields that are between and including the test values). And in other databases, persons with the LastName of "Hansen" will be listed, but "Pettersen" will not be listed (like the example above), because the BETWEEN operator selects fields between the test values, including the first test value and excluding the last test value. Therefore: Check how your database treats the BETWEEN operator. Example 2To display the persons outside the range in the previous example, use NOT BETWEEN:
The result-set will look like this:
|
SQL Between