摘要: --删除主键 alter table 表名 drop constraint 主键名 --添加主键 alter table 表名 add constraint 主键名 primary key(字段名1,字段名2……) --添加非聚集索引的主键 alter table 表名 add constraint 主键名 primary key NONCLUSTERED(字段名1,字段名2……) 新建表: ... 阅读全文
posted @ 2017-01-13 09:49 SaYes 阅读(171) 评论(0) 推荐(0) 编辑