Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » UltraLite - Database Management and Reference » UltraLite SQL Function Reference » Alphabetical list of functions

SHORT_PLAN function [Miscellaneous] Next Page

SIGN function [Numeric]


Returns the sign of a number.

Syntax

SIGN( numeric-expression )

Parameters

numeric-expression    The number for which the sign is to be returned.

Remarks

For negative numbers, the SIGN function returns -1.

For zero, the SIGN function returns 0.

For positive numbers, the SIGN function returns 1.

Standards and compatibility
Example

The following statement returns the value -1

SELECT SIGN( -550 );