PPT Slide
The complex view allows data to be
joined from multiple tables in addition to
all the features of simple views, such as
using order by in the select statement
CREATE VIEW employee_view AS (SELECT e.empid empid,
e.firstname firstname, e.salary salary,
a.state, a.zipcode FROM employee e, employee_address a WHERE e.empid = a.empid);