|< < 45 > >|

The where clause

Logical operators

  • and
  • or
  • not

between: implements a range check by combining two comparisons

C between x and y

is equivalent to
C >= x and C <= y

|< < 45 > >|