May 2020
Beginner
564 pages
14h 9m
English
To recap what was covered in Chapter 6, Querying a Single Table, the following table lists comparison operators:
| Symbol | Description | Examples |
| = | equal | column = 'text' column = 1 |
| >= | greater than or equal to | column >= 1 |
| > | greater than | column > 1 |
| <= | less than or equal to | column <= 1 |
| < | less than | column < 1 |
| <> | does not equal | column <> 'text' column <> 1 |
| != | does not equal | column != 'text' column != 1 |
Some example use cases of comparison operators are listed here:
Read now
Unlock full access