By - superajPosted in Mysql相关Mysql主从服务器的配置主要是修改配置文件,一般在linux下安装的mysql配置文件是my.cnf,在windwos下是my.ini Read More
By - superajPosted in Mysql相关mysql数据库相关思路备份今天需要把A B两个网站的一些数据更新到C网站,数据结构使用B网站的,A B网站略有不同 思路如下: 1. 复 Read More
By - superajPosted in Mysql相关替换文本SQL替换文本SQL UPDATE `linuxso_archives` SET `title` = replace Read More
By - superajPosted in Mysql相关mysql数据库文件夹复制后无法显示InnoDB类型的数据表INNODB的数据是存储在%datadir%ibdata1 文件中的,FRM文件只保存表的结构和定义。所以需要 Read More
By - superajPosted in Mysql相关Windows 下制作免安装的 MySQL 简化版1、首先下载免安装包 mysql-noinstall-5.1.54-win32.zip(其它版本类似) 2、复 Read More
By - superajPosted in Mysql相关mysql密码找回1、cmd进入命令行,切换到mysql的安装目录(本机mysql安装路径D:\MySQL) C:\Docume Read More
By - superajPosted in Mysql相关MySQL复制表结构和内容到另一张表中的SQL1.复制表结构及数据到新表 CREATE TABLE 新表 SELECT * FROM 旧表 2.只复制表结构 Read More