MSSQL 数据库表字段增/删/改/查的操作
来源:程序员人生 发布时间:2014-05-23 16:21:24 阅读次数:3735次
添加
1、向Loginfo中添加新列“newcomlum1” ,int型,
ALTER TABLE Loginfo ADD newcomlum1 int NULL
2、表:LogInfo
代码
--判断要添加列的表中是否有主键
if exists(select 1 from sysobjects where parent_obj=object_id('LogInfo') and xtype='PK')
begin
print '表中已经有主键,列只能做为普通列添加'
--添加int类型的列,默认值为0
alter table LogInfo add 列名 int default 0
end
else
begin
print '表中无主键,添加主键列'
--添加int类型的列,默认值为0
alter table LogInfo add 列名 int primary key default 0
end