Reputation: 86
In SQL Server the following gives me column 50 followed by all the columns. How do you achieve the same with PL/SQL?
select col50, * from mytable
Thanks.
Upvotes: 0
Views: 4828
Reputation: 231861
You just need to qualify the *.
SELECT col50, mytable.*
FROM mytable
or
SELECT col50, t.*
FROM mytable t
Upvotes: 3