如何在表类型中添加列名

时间:2017-11-20 11:22:15

标签: sql sql-server sql-server-2008

如何在表类型中添加列名

alter table type typemaster add emplpoyee varchar(48)

2 个答案:

答案 0 :(得分:0)

alter table type add name varchar(48)

答案 1 :(得分:0)

type是保留关键字,因此您需要将表名括在括号中。

--the technical answer
alter table [type] add emplpoyee varchar(48)

但该名称确实是一个保留关键字,这是不好的做法。最好将表重命名为不同的表。

--rename the table to something different
exec sp_rename 'type', 'mytype'