SQL常用语句
Posted zhaop
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL常用语句相关的知识,希望对你有一定的参考价值。
1、修改表中某属性
alter table 表名 alter column 列名 varchar(10)
2、删除原来的列
alter table 表名 drop column 列名
3、将某列属性设置成自增(如果原属性存在需要先删除)
alter table 表名 add uid int identity(100,1) primary key
以上是关于SQL常用语句的主要内容,如果未能解决你的问题,请参考以下文章