24 lines
748 B
SQL
24 lines
748 B
SQL
-- Create table
|
|
create table BI电销坐席车非渗透统计表
|
|
(
|
|
summary_date DATE default sysdate not null,
|
|
坐席名称 varchar2(20) not null,
|
|
车险保费 NUMBER default 0 not null,
|
|
车险保费占比 NUMBER default 0 not null,
|
|
非车保费 NUMBER default 0 not null,
|
|
当月保费渗透率 NUMBER default 0 not null,
|
|
保费渗透率环比上月 NUMBER default 0 not null,
|
|
当月客户渗透率 NUMBER default 0 not null,
|
|
客户渗透率环比上月 NUMBER default 0 not null,
|
|
当月车非客均保费 NUMBER default 0 not null,
|
|
客均保费环比上月 NUMBER default 0 not null
|
|
)
|
|
tablespace DESKTOP_ARCHIEVEMENT
|
|
pctfree 10
|
|
initrans 1
|
|
maxtrans 255;
|
|
-- Add comments to the table
|
|
comment on table BI电销坐席车非渗透统计表
|
|
is '用于存放BI导出每日电销坐席车险非车险保费和车非渗透率数据。';
|
|
|