Oracle 创建表

drop table T_test cascade constraints;



create  table T_test (
   ID  NUMBER(20) 

}




comment on table T_test  is
'被保人表';


comment on column T_test .ID is
'ID';

你可能感兴趣的:(Oracle 创建表)