Difference between revisions of "BETWEEN AND Operator"
Jump to navigation
Jump to search
(Created page with " The BETWEEN . . . AND comparison operator is used when searching a field for values falling within a specified range SELECT title, pubid FROM books WHERE pubid BETWEEN 1...") |
(No difference)
|
Revision as of 18:02, 24 October 2017
The BETWEEN . . . AND comparison operator is used when searching a field for values falling within a specified range
SELECT title, pubid FROM books WHERE pubid BETWEEN 1 AND 3
SELECT title
FROM books WHERE title BETWEEN 'A' AND 'D'