use workplace1
create table department
(
   department_code char(2),
   department_name varchar(40),
   primary key(department_code)
)