Mysql基础第二十五天,使用视图
Posted 2019ab
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql基础第二十五天,使用视图相关的知识,希望对你有一定的参考价值。
视图
视图的作用
select cust_nam.id e,cust_contact from customers c join order o on c.cust_id=o.cust join on o.order_num=oi.order_num where prod_id='TNT2';
视图的规则和限制
使用视图
创建视图
create view view_productcustomer as
select cust_nam.id e,cust_contact from customers c join order o on c.cust_id=o.cust join on o.order_num=oi.order_num where prod_id='TNT2';
使用视图
select * from view_productcustomer ;
更新视图
create view view_orderitemexpandec as
select product_id,quantity,item_price,quantity * item_price as expanded_price from orderitems;
以上是关于Mysql基础第二十五天,使用视图的主要内容,如果未能解决你的问题,请参考以下文章