/*
================================================================================
档案代号:sto_file
档案名称:LCM计算主档
档案目的:
上游档案:
下游档案:
============.========================.==========================================
*/
create table sto_file
(
sto01       number(5),               /*年度                                   */
sto02       number(5),               /*月份                                   */
sto03       date,                    /*巿价参考起始日期                       */
sto04       date,                    /*巿价参考截止日期                       */
sto05       number(9,4)              /*推销费用率                             */
                                     /*推销费用率%                            */
);

grant select on sto_file to public;
grant index on sto_file to public;
grant update on sto_file to public;
grant delete on sto_file to public;
grant insert on sto_file to public;