网站服务器免费吗,最近七天的新闻大事,什么作为国内的主要门户网站,网站网站设计网站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;