当前位置: 代码迷 >> Oracle管理 >> 修改列属性,初学者
  详细解决方案

修改列属性,初学者

热度:34   发布时间:2016-04-24 05:08:39.0
修改列属性,菜鸟求救
alter table cp_test alter column name set not null;哪里错了

------解决方案--------------------
alter table cp_test modify column_name not null ;
------解决方案--------------------
应该使用modify
------解决方案--------------------
alter table cp_test modify column_name not null ;
正解
------解决方案--------------------
alter table table_name modify colunm_name not null
------解决方案--------------------
语法上 同一条语句中 有两个 alter是不行滴!
  相关解决方案