desktop_task_schedule/code/db/团队表.sql

19 lines
480 B
SQL

-- Create table
create table TELE_SALER_TEAM
(
team VARCHAR2(30 CHAR),
team_code VARCHAR2(20),
department_code VARCHAR2(20)
)
tablespace DESKTOP_ARCHIEVEMENT;
-- Add comments to the table
comment on table TELE_SALER_TEAM
is '×øϯÍŶӱí';
-- Add comments to the columns
comment on column TELE_SALER_TEAM.team
is 'ÍŶÓÃû³Æ';
comment on column TELE_SALER_TEAM.team_code
is 'ÍŶӴúÂë';
comment on column TELE_SALER_TEAM.department_code
is '²¿ÃÅ´úÂë';