前面我们讲了视图创建了,今天这篇教程我们就要来讲一下mysql教程视图的修改与更新了。
视图修改。
语法:
Alter [algorithm ={undefined |merge | temptable}] view view_name [(collist)] as select [with [case |local] check option]
我们来先创建一个简单的视图
create or replace view 111cnNet as select * from net111 where id=5;
上面是查询www.111cn.net表中id为5的一条记录的视图创建语句下面我们要修改一下查询id=6或7的mysql视图
alter view 111cnNet as select * from net111 where id in(6,7) and url='http://www.111cn.net';
这样上面的视图就被修改了。
本站原创文章转载注明来源于http://www.111cn.net/database/database.html
时间: 2024-10-25 04:37:38