Hi,
Yes it does.
From Volume 5 Chapter 2 of the Teradata SQL reference manual.
( click on SQL reference )
( then the version of Teradata you want ).
Arithmetic Functions
Supported Arithmetic Functions
The Teradata RDBMS provides the following arithmetic functions that require numeric arguments:
Function Result
ABS (arg) Absolute value
EXP (arg) Raises e to the power of arg (e**arg)
LN (arg) Natural logarithm; (e = 2.71828182845905)
LOG (arg) Base 10 logarithm
NULLIFZERO (arg) Returns NULL if arg is zero; else arg
SQRT (arg) Square root
ZEROIFNULL (arg) Returns zero is arg is NULL; else arg
If the argument is not numeric, it is converted to a numeric value. If the argument cannot be converted, an error is reported.
Arithmetic functions cannot be applied to GRAPHIC operands.
ANSI Compliance
The arithmetic functions are all Teradata extensions to the ANSI SQL-99 standard.