Rumah > Artikel > pangkalan data > mysql视图如何修改
mysql修改视图的方法:1、如视图存在则覆盖,如不存在则创建,代码为【create or replace view 语句】;2、通过alter语句来修改,代码为【alter view student_view(id,name....】。
mysql修改视图的方法:
1、如视图存在则覆盖,如不存在则创建。
create or replace view 语句。
create or replace view algorith=temptable view student_view(nid,id,name) as select id,pid,title from student;
2、通过alter语句来修改。
alter view student_view(id,name,title) as select id,name,sex from student;
相关学习免费推荐:mysql数据库(视频)
Atas ialah kandungan terperinci mysql视图如何修改. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!