Dynamic column listing in CTAS
Is there a way to do something like....
Create table my_table
as Select a.* minus a.name from emp a;
to select all columns but name?
0
Create table my_table
as Select a.* minus a.name from emp a;
to select all columns but name?