M2-Activity No. 3
M2-Activity No. 3
Manila
COLLEGE OF COMPUTER STUDIES AND SYSTEMS
Part 1:
Given the database schema of employee below, create the database design using SQL
statements.
Part 2:
List all the SQL commands needed in creating the database. Consider the following:
Part 3:
As evidence that database design has been created, include screenshots of your entire
window/screen showing the created database design.
insert into employees(emp_id, emp_name, job_name, salary, commission) VALUES (1, 'Mikee',
'Manager', 20000, 1000);
insert into employees(emp_id, emp_name, job_name, salary, commission) VALUES (2, 'Carlo',
'ASSISTANT', 15000, 1000);
insert into employees(emp_id, emp_name, job_name, salary, commission) VALUES (3,
'Maymay', 'supervisor', 18000, 1000);