oracle表创建好后增加not null约束的方法:

alter table table_name modify column_name not null;

eg:

   alter table customers modify cardId not null;