mysql数据库重命名语句分享
更新时间:2014年01月15日 10:15:58 作者:
这篇文章主要介绍了mysql数据库重命名语句救命示例,语句中的数据库表前缀换成自己的就可以了,大家参考使用吧
复制代码 代码如下:
CREATE DATABASE `ct` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
RENAME TABLE `51cola`.`commentmeta`
TO `ct`.`commentmeta`;
RENAME TABLE `51cola`.`comments`
TO `ct`.`comments`;
RENAME TABLE `51cola`.`customcontactforms_fields`
TO `ct`.`customcontactforms_fields`;
RENAME TABLE `51cola`.`customcontactforms_field_options`
TO `ct`.`customcontactforms_field_options`;
RENAME TABLE `51cola`.`customcontactforms_forms`
TO `ct`.`customcontactforms_forms`;
RENAME TABLE `51cola`.`customcontactforms_styles`
TO `ct`.`customcontactforms_styles`;
RENAME TABLE `51cola`.`customcontactforms_user_data`
TO `ct`.`customcontactforms_user_data`;
RENAME TABLE `51cola`.`links`
TO `ct`.`links`;
RENAME TABLE `51cola`.`options`
TO `ct`.`options`;
RENAME TABLE `51cola`.`postmeta`
TO `ct`.`postmeta`;
RENAME TABLE `51cola`.`posts`
TO `ct`.`posts`;
RENAME TABLE `51cola`.`terms`
TO `ct`.`terms`;
RENAME TABLE `51cola`.`term_relationships`
TO `ct`.`term_relationships`;
RENAME TABLE `51cola`.`term_taxonomy`
TO `ct`.`term_taxonomy`;
RENAME TABLE `51cola`.`usermeta`
TO `ct`.`usermeta`;
RENAME TABLE `51cola`.`users`
TO `ct`.`users`;
DROP DATABASE `51cola`;
相关文章
mysql查询过去24小时内每小时数据量的方法(精确到分钟)
我们经常遇到类似这样的需求,查询最近N秒、N分钟、N小时的数据及N天的数据,下面这篇文章主要给大家介绍了关于mysql查询过去24小时内每小时数据量(精确到分钟)的相关资料,需要的朋友可以参考下2023-03-03mysql 使用profiling和explain查询语句性能解析
MySQL 查询 Profile 可以告诉你每个查询花费了多长时间,使用了多少资源,执行了哪些操作等,这篇文章主要介绍了mysql 使用profiling和explain查询语句性能解析,需要的朋友可以参考下2024-02-02
最新评论