/* ================================================================================ 档案代号:mse_file 档案名称:指定厂牌名称档 档案目的: 上游档案: 下游档案: ============.========================.========================================== */ create table mse_file ( mse01 varchar2(24) NOT NULL, /*指定厂牌编号 */ mse02 varchar2(80) /*厂牌名称 */ ); create unique index mse_pk on mse_file (mse01); alter table mse_file add constraint mse_pk primary key (mse01) enable validate; grant select on mse_file to public; grant index on mse_file to public; grant update on mse_file to public; grant delete on mse_file to public; grant insert on mse_file to public; |