Use this statement to create a SQL variable.
CREATE VARIABLE identifier data-type
The CREATE VARIABLE statement creates a new variable of the specified data type. The variable contains the NULL value until it is assigned a different value by the SET statement.
A variable can be used in a SQL expression anywhere a column name is allowed. Name resolution is performed as follows:
Match any aliases specified in the query's SELECT list.
Match column names for any referenced tables.
Assume the name is a variable.
Variables belong to the current connection, and disappear when you disconnect from the database or when you use the DROP VARIABLE statement. Variables are not visible to other connections. Variables are not affected by COMMIT or ROLLBACK statements.
Variables are useful for creating large text or binary objects for INSERT or UPDATE statements from embedded SQL programs.
Local variables in procedures and triggers are declared within a compound statement (see Using compound statements).
None.
None.
SQL/2003 Vendor extension.
This example creates a variable called first_name, of data type VARCHAR(50).
CREATE VARIABLE first_name VARCHAR(50); |
This example creates a variable called 'birthday', of data type DATE.
CREATE VARIABLE birthday DATE; |
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |