alter table TABLENAME add FIELDNAME char(
1)
not null default '0' ;
it was throwing an error:
'ORA-
30649:missing directory keyword'
solution:
put
NOT NULL after the
default '0'
http://stackoverflow.com/questions/12873667/alter-table-syntax
转载请注明原文地址: https://ju.6miu.com/read-1309277.html