Contents Index CHAR_LENGTH function [String] COMPARE function [String]

ASA SQL Reference
  SQL Functions
    Alphabetical list of functions

COALESCE function [Miscellaneous]


Function 

Returns the first non-NULL expression from a list.

Syntax 

COALESCE ( expressionexpression [ , ...] )

Parameters 

expression    Any expression.

Standards and compatibility 
Example 

The following statement returns the value 34.

SELECT COALESCE( NULL, 34, 13, 0 )

Contents Index CHAR_LENGTH function [String] COMPARE function [String]