视图是虚拟的表,和包含数据的表不一样,视图只包含使用时动态检索数据的查询。
为什么使用视图?
重用SQL语句简化复杂的SQL操作使用表的一部分而不是整个表保护数据更改数据格式和表示
create view ProductCustomers as select cust_name,cust_contact,prod_id from Customers,Orders,OrderItems where Customers.cust_id = Orders.cust_id and OrderItems.order_num = Orders.order_num;
创建了一个名为 ProductCustomers的视图,返回订购了任意产品的所有顾客的列表。 下面检索订购了产品RGAN01的顾客:
select cust_name,cust_contact from ProductCustomers where prod_id = 'RGAN01';
转载于:https://www.cnblogs.com/xLI4n/p/10348563.html