No.
The syntax of the SELECT
statement's select_list part in oracle grammar is this:
{ *
| { query_name.*
| [ schema. ]
{ table | view | materialized view } .*
| expr [ [ AS ] c_alias ]
}
[, { query_name.*
| [ schema. ]
{ table | view | materialized view } .*
| expr [ [ AS ] c_alias ]
}
]...
}
That means, either asterisk and nothing else, or rowsource-qualified asterisk(s) and discrete columns. No c_alias token possible after an *.
What you can do, is to combine asterisks and field lists, even when both parts reference the same table, like here:
SELECT
TA1.*,
TA1.Column1 AS ColumnX
FROM Table1 TA1
Using the asterisk is discouraged for various reasons. Use it for convenience in ad-hoc queries.