September 2015
Beginner
288 pages
5h 39m
English
In this lesson, you’ll learn exactly what views are, how they work, and when they should be used. You’ll also see how views can be used to simplify some of the SQL operations performed in earlier lessons.
Views are virtual tables. Unlike tables that contain data, views simply contain queries that dynamically retrieve data when used.
The best way to understand views is to look at an example. Back in Lesson 15, “Joining Tables,” you used the following SELECT statement to retrieve data from three tables:
Input
SELECT cust_name, cust_contactFROM customers, orders, orderitemsWHERE customers.cust_id = orders.cust_id AND orderitems.order_num = orders.order_num AND prod_id ...
Read now
Unlock full access