/*
================================================================================
档案代号:viq_file
档案名称:vip消费积分档
档案目的:
上游档案:
下游档案:
============.========================.==========================================
*/
create table viq_file
(
viq01       varchar2(16) NOT NULL,   /*VIP卡号                                */
viq02       date,                    /*消费日期                               */
viq03       varchar2(10),            /*消费地点                               */
viq04       number(20,6),            /*消费金额                               */
viq05       number(10)               /*消费积分                               */
);

create        index viq_01 on viq_file (viq01);
grant select on viq_file to public;
grant index on viq_file to public;
grant update on viq_file to public;
grant delete on viq_file to public;
grant insert on viq_file to public;