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
You could create a view that has the columns you wish to select, then you can just select * from the view...
select *