如何做学校的网站,做网站会出现哪些问题,网站建设的作用和用途,怎么做百度搜索排名OS#xff1a;linux ubuntu 最近在对MySQL数据库开发的过程中#xff0c;需要修改一个view的名字#xff0c;但是找了许久才找到对应的SQL#xff0c;切记不是alter#xff0c;而是rename table ....
在MySQL中#xff0c;如果想要rename 视图的名字#xff0c;需要使用…OSlinux ubuntu 最近在对MySQL数据库开发的过程中需要修改一个view的名字但是找了许久才找到对应的SQL切记不是alter而是rename table ....
在MySQL中如果想要rename 视图的名字需要使用rename table 语句。SQL语句例如 create table test (c1 int primary key, c2 varchar(50)) engine xxxxx;create view test3 as select * from test;rename table test3 to new_view;