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基础第二十五天,使用视图的主要内容,如果未能解决你的问题,请参考以下文章

第二十五天 IPtable基础框架扩展匹配及防火墙原理iptable入门

学习python课程第二十五天

团队冲刺第二十五天

团队冲刺第二十五天

第二十五天

第二十五天接口多态