How to create multiple mysql instance in CentOS 6.4 and Red Hat 6.4 from:http://sharadchhetri.com/2013/12/02/create-multiple-mysql-instance-centos-6-4-red-hat-6-4/ December 2, 2013 by sharad chhetri 6 Comments In this tutorial we will learn about how…
-- 只复制表结构 create table city1 like city; INSERT INTO test2 SELECT * FROM test; -- 上面的表必须存在 -- 复制整张表的数据 create table test2 select * from test -- create database xxx charset-- create table xxx (id int,xxxxxx)-- drop table-- drop database-- al…