#MySQL #tutorial #course
MySQL tutorial for beginners
CREATE VIEW employee_attendance AS
SELECT first_name, last_name
FROM employees;
CREATE VIEW customer_emails AS
SELECT email
FROM customers;