摘要: --删除主键 alter table 表名 drop constraint 主键名 --添加主键 alter table 表名 add constraint 主键名 primary key(字段名1,字段名2……) --添加非聚集索引的主键 alter table 表名 add constraint 主键名 primary key NONCLUSTERED(字段名1,字段名2……) ... 阅读全文
posted @ 2016-06-12 16:40 落叶的瞬间; 阅读(26574) 评论(4) 推荐(4) 编辑