Neoview SQL Reference Manual (R2.2)

Examples of Numeric Value Expressions
These are examples of numeric value expressions:
Numeric literal.
-57
The product of the values in the SALARY column and a
numeric literal.
salary * 1.10
The product of the values in the UNIT_PRICE and
QTY_ORDERED columns.
unit_price * qty_ordered
An expression whose operands are numeric literals.
12 * (7 - 4)
Function applied to the values in a column.
COUNT (DISTINCT city)
Expressions 219