Contents Index VARIANCE function [Aggregate] WATCOMSQL function [Miscellaneous]

ASA SQL Reference
  SQL Functions
    Alphabetical list of functions

VAREXISTS function [Miscellaneous]


Function 

Returns 1 if a user-defined variable has been created or declared with a given name. Returns 0 if no such variable has been created.

Syntax 

VAREXISTS ( variable-name-string )

Parameters 

variable-name-string    The name to be tested, as a string.

Standards and compatibility 
See also 

CREATE VARIABLE statement

DECLARE statement

IF statement

Example 

The following IF statement creates a variable with a name start_time if one is not already created or declared. The variable can then be used safely.

IF VAREXISTS('start_time') = 0 THEN
    CREATE VARIABLE start_time TIMESTAMP;
END IF;
SET start_time = current timestamp;

Contents Index VARIANCE function [Aggregate] WATCOMSQL function [Miscellaneous]