一张表有100个字段,我知道有5个字段名称{A,B,C,D,E}是不需要的,我怎样写SQL语句把需要的字段从表里select出来,而不需要写出95个字段的名称?
select ????????
from table
这个问题不知道能不能解决你的问题?sql-exclude-a-column-using-select-except-columna-from-tablea
思路是:
创建一个临时表,然后把特定的列丢弃掉,然后再查询这张临时表。
/* 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