I have a query with several nested table.
For every selection, I have to select all the columns of the previous nested
tables plus other columns I create.
For example:
select
field1,
field2,
field1/field2 as field3
from (
select
field1, field2
from mytable.
In the real query I have many columns to select and so in order to avoid to
repeat all the fields names in every selection, I'd like to make this selection:
select
*,
field1/field2 as field3
i.e. I want to select all the columns of the previous table plus the new
created column.
How can that be done?
Thank you.
Anna - Verona (Italy)
