desktop_task_schedule/code/db/团队表.sql

19 lines
480 B
MySQL
Raw Permalink Normal View History

2023-03-28 09:34:31 +00:00
-- 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 '<EFBFBD><EFBFBD>ϯ<EFBFBD>Ŷӱ<EFBFBD>';
-- Add comments to the columns
comment on column TELE_SALER_TEAM.team
is '<EFBFBD>Ŷ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
comment on column TELE_SALER_TEAM.team_code
is '<EFBFBD>ŶӴ<EFBFBD><EFBFBD><EFBFBD>';
comment on column TELE_SALER_TEAM.department_code
is '<EFBFBD><EFBFBD><EFBFBD>Ŵ<EFBFBD><EFBFBD><EFBFBD>';