博客是我工作的好帮手,遇到困难就来博客找资料
发布时间:2016-07-07 16:08:28
从不同的表复制insert into 表1 select * from 表2 where id =** ; 同一张表中复制(无主键)insert into 表1 select * from 表2 where id =** ; 同一张表中复制(有主键)insert into 表1(字段1,字段2,字段3) select 字段1,字段2,字段3 from 表1 where id= ** ; .........【阅读全文】
发布时间:2016-07-01 17:54:07
MySQL多实例配置方法 1、单一配置文件 2、多配置文件。二、实战步骤: 1、同步时间 2、准备mysql依赖包 3、环境准备 3.1添加mysql用户 &nbs.........【阅读全文】