@name

Specifies the name that should be displayed in association with the CCL statement that follows.

SYNTAX

@name statement-name

statement-name: A name for the following statement.

DESCRIPTION

The @name documentation tag specifies the name that should be displayed in association with the CCL statement that follows. A CCL statement can have no more than one associated @name tag.

Example

The following example associates the name FirstQuery with the query that follows:

---@name FirstQuery
INSERT INTO TempOut
SELECT * 
FROM TempIn;