mysql更改database的名_MySQL中修改database的名字
背景案例:MySQL中已经存在base的database,处于某种原因需要改为改为gzbase。步骤如下:1、首先创建目标数据库:mysql>create database gzbase;2、查看源数据库中的所有表名:mysql>use information_schema;mysql>select concat('rename table base.', table_name,...