在access中如何用sql语句修改表?
现在遇到一个问题,要用sql语句在asp中之行修改表结构,搜来搜去,还是不太明白其中一篇是这个:http://www.oncecode.com/Html/Articles...
现在遇到一个问题,
要用sql语句在asp中之行修改表结构,
搜来搜去,
还是不太明白
其中一篇是这个:
http://www.oncecode.com/Html/Articles/429.htm
哪位大侠详细讲解一下咯? 展开
要用sql语句在asp中之行修改表结构,
搜来搜去,
还是不太明白
其中一篇是这个:
http://www.oncecode.com/Html/Articles/429.htm
哪位大侠详细讲解一下咯? 展开
2个回答
展开全部
//删除主键关系
alter table table2 drop constraint pk_1
/添加主键关系
alter table table2 add constraint pk_1 primary key (colname)
//添加新列
alter table table add column colname int not null
//要把新列设为主键 该列菲空
alter table 表名 add constraint colname primary key
alter table table2 drop constraint pk_1
/添加主键关系
alter table table2 add constraint pk_1 primary key (colname)
//添加新列
alter table table add column colname int not null
//要把新列设为主键 该列菲空
alter table 表名 add constraint colname primary key
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询