sqlplus添加字段出错
为什么我写:
alter table employee
add salary number(7,3) not null default 0
会报错说:
第 2 行出现错误:
ORA-30649: 缺少 DIRECTORY 关键字
怎么解决?
------解决方案--------------------
把NOT null 放到 default 后面
hr@ORCL> create table t (n number);
Table created.
hr@ORCL> alter table t add i varchar2(10) default '0' not null;
Table altered.