We all know that to select all columns from a table, we can use
SELECT * FROM tableA
Is there a way to exclude column(s) from a table witho
In Hive Sql you can do this:
set hive.support.quoted.identifiers=none; select `(unwanted_col1|unwanted_col2|unwanted_col3)?+.+` from database.table
this gives you the rest cols