我需要帮助,我的 SQL Server 选择语句是:
select * from schematemplate.scanner
该表的列是:
id
Asset_Category
Asset_Classification
Brand
Model
Supplier
Color
Asset_Category
我可以选择除and之外的所有列Asset_Classification
:
Select id, brand, model, supplier, color
from schematemplate.scanner
但我不想像上面的代码那样指定我将选择的列。
是否可以使用SELECT * from schematemplate.scanner
和添加类似的代码EXCEPT asset_category and asaset_classification
?