增加数据

This commit is contained in:
2023-03-28 17:34:31 +08:00
parent 861eb4353f
commit 99fe14f0dc
3 changed files with 18 additions and 471 deletions

18
code/db/团队表.sql Normal file
View File

@@ -0,0 +1,18 @@
-- 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>';