当前位置: 代码迷 >> Sql Server >> alter table 查询表
  详细解决方案

alter table 查询表

热度:86   发布时间:2016-04-27 13:44:22.0
alter table 查询表求助
表名curriculum,修改“课程编号”列,使非空

------解决方案--------------------
SQL code
alter table table_name alter column column_name data_type not null default('')--加默认值
------解决方案--------------------
SQL code
alter tabl curriculum  alter column 课程编号 varchar(10) not null
  相关解决方案