助けが必要です。SQL Server の select ステートメントは次のとおりです。
select * from schematemplate.scanner
このテーブルの列は次のとおりです。
id
Asset_Category
Asset_Classification
Brand
Model
Supplier
Color
これを使用して、Asset_Category
およびを除くすべての列を選択できます。Asset_Classification
Select id, brand, model, supplier, color
from schematemplate.scanner
しかし、上記のコードのように選択する列を指定したくありません。
のようなコードを使用SELECT * from schematemplate.scanner
して追加することは可能EXCEPT asset_category and asaset_classification
ですか?