Difference between revisions of "BETWEEN Predicate"
From Recital Documentation Wiki
Yvonnemilne (Talk | contribs) |
Yvonnemilne (Talk | contribs) |
||
Line 15: | Line 15: | ||
==See Also== | ==See Also== | ||
− | [[PREDICATES]], [[SQL INSERT|INSERT]], [[SQL SELECT|SELECT]], [[SQL UPDATE|UPDATE]] | + | [[SQL PREDICATES|PREDICATES]], [[SQL INSERT|INSERT]], [[SQL SELECT|SELECT]], [[SQL UPDATE|UPDATE]] |
Revision as of 15:42, 13 March 2009
Contents
BETWEEN PREDICATE
Class
SQL Applications
Purpose
Special predicate
Syntax
<expression1> [NOT] BETWEEN <expression2> AND <expression3>
See Also
PREDICATES, INSERT, SELECT, UPDATE
Description
BETWEEN is a special predicate to evaluate whether the specified <expression1> is greater than or equal to <expression2> and less than or equal to <expression3>. The data type must be the same for <expression1>, <expression2> and <expression3>.
The optional NOT evaluates whether <expression1> is not greater than or equal to <expression2> and not less than or equal to <expression3>.
Example
EXEC SQL SELECT name, address, balance, cost*1.15 FROM accounts WHERE paid_date < date() AND ord_value NOT BETWEEN 0 AND 10000 ORDER BY name, paid_date;
Products
Recital Database Server, Recital Mirage Server, Recital Terminal Developer