Difference between revisions of "COMPARISON OPERATORS"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
==COMPARISON OPERATORS== | ==COMPARISON OPERATORS== | ||
A comparison operator indicates how data should relate to the search value, such as “greater than” or “less than.” | 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 | |||
[[#Rules for Dates|Back To Top]]-[[Main_Page| Home]] - [[Oracle_SQL|Category]] | [[#Rules for Dates|Back To Top]]-[[Main_Page| Home]] - [[Oracle_SQL|Category]] |
Revision as of 17:03, 24 October 2017
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