发布时间:2015-04-27 16:03:59
mysql> select * from tet3;+----+-------------+| id | dd |+----+-------------+| 1 | XX || 2 | YY || 3 | aaa || 4 | 5002301999X || 5 |.........【阅读全文】
发布时间:2015-04-27 14:03:00
前提:binlog模式为row,隔离模式为read-committed对于update误操作,可以模拟oralce 的闪回功能,利用binlog日志,具体操作如下:mysql> select * from test1;+------+---------+--------+| dept | name | salary |+------+---------+--------+| it | gaopeng | 100 || it | yhb.........【阅读全文】
发布时间:2015-04-27 12:02:34
在数据文件下的innodb ibdata包括表空间:ibdata1,ibdata2,回滚日志ib_logfile0,ib_logfile1,ib_logfile2. [root@localhost data]# ls5k72 db-bin.000015 dbjijin-bin.000001 ibdata1 ib_logfile1 .........【阅读全文】
发布时间:2015-01-15 11:19:38
replace、regexp的用法 0 Comments | This entry was posted on Apr 08 2010 mysql replace用法 1.replace into replace into table (id,name) values('1′,'aa'),('2′,'bb') 此语句的作用是向表table中插入两条记录。如果主键id为1或2不存在 就相当于 insert into table (id,n.........【阅读全文】