Chapter 10A – Managing Databases with SQL Server 2017
Page 10A-21
/***** EMPLOYEE DATA ********************************************************/
INSERT INTO EMPLOYEE VALUES(
‘Mary’, ‘Jacobs’, ‘Administration’, ‘CEO’, NULL,
‘360-285-8110’, ‘Mary.Jacobs@WP.com’);
‘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’);
‘Ken’, ‘Numoto’, ‘Sales and Marketing’, ‘SM3’, 1,
‘360-287-8510’, ‘Ken.Numoto@WP.com’);
INSERT INTO EMPLOYEE VALUES(
‘Linda’, ‘Granger’, ‘Sales and Marketing’, ‘SM2’, 10,
‘360-287-8520’, ‘Linda.Granger@WP.com’);
‘Jason’, ‘Sleeman’, ‘Research and Development’, ‘RD3’, 14,
‘360-287-8720’, ‘Jason.Sleeman@WP.com’);
INSERT INTO EMPLOYEE VALUES(
‘Mary’, ‘Smith’, ‘Production’, ‘OPS3’, 1,
‘360-287-8810’, ‘Mary.Smith@WP.com’);
INSERT INTO EMPLOYEE VALUES(
‘Tom’, ‘Jackson’, ‘Production’, ‘OPS2’, 14,
‘360-287-8820’, ‘Tom.Jackson@WP.com’);
INSERT INTO EMPLOYEE VALUES(
‘George’, ‘Jones’, ‘Production’, ‘OPS2’, 15,