Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Returns True if the value on the left side is less than equal to the value on the right side.

Between:

The Between operator selects values within a given range. The values can be numbers, text, or dates. The Between operator is inclusive: begin and end values are included.

Match:

Match operator to compare a string expression with a pattern. returns true or false depending on whether its pattern matches the given string. The match operator supports these wildcard characters in the quoted string. Matches any of the enclosed characters, including ranges, as in [ a-z ].

...