Chapter 10B – Managing Databases with Oracle Database
Page 10B-33
Here are the data to populate the database:
/***** DEPARTMENT DATA
******************************************************/
INSERT INTO DEPARTMENT VALUES(‘Administration’, ‘BC-100-10’, ‘BLDG01-210’,
‘360-285-8100’);
INSERT INTO DEPARTMENT VALUES(‘Legal’, ‘BC-200-10’, ‘BLDG01-220’, ‘360-285-
8200′);
/***** EMPLOYEE DATA
********************************************************/
INSERT INTO EMPLOYEE VALUES(seqEID.nextVal,
‘Mary’, ‘Jacobs’, ‘Administration’, ‘CEO’, NULL, ‘360-285-8110’,
‘Mary.Jacobs@WP.com’);
INSERT INTO EMPLOYEE VALUES(seqEID.nextVal,
‘Alan’, ‘Adams’, ‘Human Resources’, ‘HR1’, 4, ‘360-285-8320’,
‘Alan.Adams@WP.com’);
INSERT INTO EMPLOYEE VALUES(seqEID.nextVal,
‘Ken’, ‘Evans’, ‘Finance’, ‘CFO’, 1, ‘360-285-8410’, ‘Ken.Evans@WP.com’);
INSERT INTO EMPLOYEE VALUES(seqEID.nextVal,
‘Mary’, ‘Abernathy’, ‘Finance’, ‘FA3’, 6, ‘360-285-8420’,
‘Mary.Abernathy@WP.com’);
INSERT INTO EMPLOYEE VALUES(seqEID.nextVal,
‘Tom’, ‘Caruthers’, ‘Accounting’, ‘FA2’, 6, ‘360-285-8430’,
‘Tom.Caruthers@WP.com’);
INSERT INTO EMPLOYEE VALUES(seqEID.nextVal,