Contents Index RIGHT function [String] RTRIM function [String]

ASA SQL Reference
  SQL Functions
    Alphabetical list of functions

ROUND function [Numeric]


Function 

Rounds the numeric-expression to the specified integer-expression amount of places after the decimal point.

Syntax 

ROUND ( numeric-expressioninteger-expression )

Parameters 

numeric-expression    The number, passed into the function, to be rounded..

integer-expression    A positive integer specifies the number of significant digits to the right of the decimal point at which to round. A negative expression specifies the number of significant digits to the left of the decimal point at which to round.

Standards and compatibility 
See also 

TRUNCNUM function [Numeric]

Example 

The following statement returns the value 123.200.

SELECT ROUND( 123.234, 1 )

Contents Index RIGHT function [String] RTRIM function [String]