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
Well, it is a common best practice to specify which columns you want, instead of just specifying *. So you should just state which fields you want your select to return.