I need to reorder my query to have the name in the first column, but I still need the rest of the columns populated as well. How would you implement an alias in oracle to achieve this query?
select s.name, s.* from table as s
Thanks for the help.