Chapter Seven – SQL For Database Construction and Application Processing
Page 7-42
/***** EMPLOYEE DATA *************************************************/
INSERT INTO EMPLOYEE VALUES(
‘George’, ‘Smith’, ‘Human Resources’, ‘HR3’, 1,
‘360-285-8310’, ‘George.Smith@WP.com’);
INSERT INTO EMPLOYEE VALUES(
‘Alan’, ‘Adams’, ‘Human Resources’, ‘HR1’, 4,
‘360-285-8320’, ‘Alan.Adams@WP.com’);
INSERT INTO EMPLOYEE VALUES(
‘Ken’, ‘Evans’, ‘Finance’, ‘CFO’, 1,
‘360-285-8410’, ‘Ken.Evans@WP.com’);
INSERT INTO EMPLOYEE VALUES(
‘Mary’, ‘Abernathy’, ‘Finance’, ‘FA3’, 6,
INSERT INTO EMPLOYEE
(FirstName, LastName, Department, Position, Supervisor, EmailAddress)
VALUES(
‘Rick’, ‘Brown’, ‘InfoSystems’, ‘IS2’, 12, ‘Rick.Brown@WP.com’);
INSERT INTO EMPLOYEE VALUES(
‘Mike’, ‘Nguyen’, ‘Research and Development’, ‘CTO’, 1,
‘360-287-8710’, ‘Mike.Nguyen@WP.com’);