The code for vps.sql is: # DROP VIEW IF EXISTS vps; # DROP not needed with CREATE OR REPLACE VIEW CREATE OR REPLACE VIEW vps AS SELECT employeeNumber, lastName, firstName, jobTitle, extension, email, officeCode, reportsTo FROM employees WHERE jobTitle LIKE '%VP%' WITH CHECK OPTION;