COMPARISON OPERATORS

From rbachwiki
Revision as of 17:10, 24 October 2017 by Bacchas (talk | contribs)
Jump to navigation Jump to search

COMPARISON OPERATORS

A comparison operator indicates how data should relate to the search value, such as “greater than” or “less than.”

  SELECT * 
FROM books
WHERE retail > 55

The “greater than” (4) comparison operator can also be used with text and date fields.

SELECT title
FROM books
WHERE title > 'HO'


Back To Top- Home - Category