alter table test modify name varchar2(8) not null;

解决方案 »

  1.   

    alter table table_name modify(col_name not null);
      

  2.   

    我是要添加一个“NOT NULL”的constraint,还要有constraint_name呀
      

  3.   

    我是要添加一个“NOT NULL”的constraint,还要 添加constraint_name呀
      

  4.   

    ALTER TABLE NAME ADD ( 
      COL_NAME TYPE(size) NOT NULL )
      

  5.   

    要怎么加上一个constraint_name,比如test_name_nn,然后就可以在 user_constraints里面查找到这个constraint_name
      

  6.   

    要怎么加上一个constraint_name,比如test_name_nn,然后就可以在 user_constraints里面查找到这个constraint_name