Hi,
I have a table with many columns among which I'd like to omit a few alone in my 'select' query. Something like select (* - columns_to_be_omitted) from myTable
. Is there a way to do this, other than listing all the other columns in the query?
This is a one-time manual query, so I'm not that concerned about performance. Ease of use is the greater need here.