desktop_task_schedule/code/db/建表/BI电销坐席车非渗透统计表.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导出每日电销坐席车险非车险保费和车非渗透率数据。';