Skip to content

Tag: select

SELECT (* – some_columns) FROM TABLE in SQL

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’…