Declaring a Display Label
You can declare a display label for any column or column expression in the select list of the Projection clause. This temporary name is in scope only while the SELECT statement is executing.
In , a display label appears as the heading for that column in the output of the SELECT statement.
In , the value of display_label is stored in the sqlname field of the sqlda structure. For more information on the sqlda structure, see the HCL® Informix® Enterprise Replication Guide.
SELECT call_dtime AS minute FROM cust_calls;For the keywords of SQL, see Keywords of SQL for HCL Informix.
If you use the INTO Table clause to create a temporary or permanent table to store the query results, you must declare a display label for any database object or expression in the select list that is not a simple column expression. The display label is used as the name of the column in the temporary or permanent table.
If you are using the SELECT statement to define a view, do not use display labels. Specify the desired label names in the CREATE VIEW column list instead.