Difference between revisions of "SQL Numeric operators"
From Recital Documentation Wiki
Helengeorge (Talk | contribs) |
Helengeorge (Talk | contribs) (→Products) |
||
Line 50: | Line 50: | ||
==Products== | ==Products== | ||
− | Recital | + | Recital, Recital Server |
[[Category:Documentation]] | [[Category:Documentation]] | ||
[[Category:SQL|Operators,Numeric]] | [[Category:SQL|Operators,Numeric]] |
Revision as of 17:21, 8 December 2009
Purpose
Numeric operators
Syntax
<expression1> operator <expression2>[ operator <expression3>…]
See Also
INSERT, OPERATORS, SELECT, UPDATE
Description
Operators used with Numeric expressions:
Operator | Operation |
---|---|
** | Exponentiation |
* | Multiplication |
/ | Division |
% | Modulus/Remainder |
+ | Addition |
- | Subtraction |
Example
EXEC SQL SELECT name, address, balance, cost*1.15 FROM accounts WHERE paid_date < date() AND ord_value > 10000 ORDER BY name, paid_date; EXEC SQL SELECT account_no, ord_value – paid_value as "Outstanding Balance" FROM accounts ORDER BY account_no;
Products
Recital, Recital Server