8 lines
181 B
MySQL
8 lines
181 B
MySQL
|
drop table twr_telsaler_team;
|
||
|
create table twr_telsaler_team
|
||
|
(
|
||
|
team_name varchar2(40) not null,
|
||
|
team_code varchar2(20),
|
||
|
department_code varchar2(6) not null
|
||
|
);
|