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
If you don't want to write each column name manually you can use Script Table As by right clicking on table or view in SSMS like this:
Script Table As
Then you will get whole select query in New Query Editor Window then remove unwanted column like this:
Done