How do I select all the columns from a table, plus additional columns like ROWNUM?

Qualify the * with the name of the table:

select rownum, table.* from table

Leave a Comment