Answers for "select all columns except one sql"

SQL
0

select all columns except one sql

/* Get the data into a temp table */
SELECT * INTO #TempTable
FROM YourTable
/* Drop the columns that are not needed */
ALTER TABLE #TempTable
DROP COLUMN ColumnToDrop
/* Get results and drop temp table */
SELECT * FROM #TempTable
DROP TABLE #TempTable
Posted by: Guest on May-16-2021

Code answers related to "select all columns except one sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language