Mike Martin wrote:
> The only way to "name" a SQL query column is with AS. There's
> corroboration in DatabaseMetaData:
>
> public boolean supportsColumnAliasing() throws SQLException
>
> Retrieves whether this database supports column aliasing.
> If so, the SQL AS clause can be used to provide names for
> computed columns or to provide alias names for columns as
> required.
>
> In both cases, "names" and not "labels".
Is an "alias name" the same as a "column name"?
-O