I've been migrating to Oracle and found a question.
In SQL Server I could do this:
select coluna, * from tabela
How do I get a similar result using Oracle 12c?
I've been migrating to Oracle and found a question.
In SQL Server I could do this:
select coluna, * from tabela
How do I get a similar result using Oracle 12c?
Oracle SQL does not directly allow the use of *
with another column, you must use alias
for the table in this case, as below:
select tbl.coluna, tbl.* from tabela tbl