sql server 2000中怎样删除表中的某一列??

2024-12-26 06:54:33
推荐回答(2个)
回答1:

alter table 表名 drop column name

回答2:

USE <数据库名>
Alter <表名>
Drop <列名>
中间有个空格。