首页 > 数据库 > SQL Server > 正文

如何通过SQL语句修改MSSQL数据库的表字段类型?

2024-08-31 00:49:40
字体:
来源:转载
供稿:网友
alter table [news] alter column id int

注:
自动增长没试过,你可以在后面增加not null primary key以及auto_increment试试,即:alter table [news] alter column id int not null auto_increment primary key

此方法适用于access数据库,mssql没试过

mysql则可以用alter table `news` change `id` `id` int( 11 ) not null auto_increment
菜鸟学堂:
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表