19 lines
480 B
MySQL
19 lines
480 B
MySQL
|
-- 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>';
|