发布时间:2015-11-25 17:06:51
一、MySQL 获得当前日期时间 函数1.1 获得当前日期+时间(date + time)函数:now()mysql> select now();+---------------------+| now() |+---------------------+| 2008-08-08 22:20:46 |+---------------------+除了 now() 函数能获得当前的日期时间外,MySQL 中还有下面的函数:current_timestamp(),curren.........【阅读全文】
发布时间:2015-11-11 17:09:55
1、select for update对row进行锁时,是对不同的connection,如果是同一个connnection那没作用。例子:1、用同一个mysql client 执行select id from table_1 where id=1 for update; select id from table_1 where id=1 for update;  .........【阅读全文】
发布时间:2015-11-11 16:55:35
最近遇到一个问题,就是order by type desc limit 0,15这样的分页会有数据丢失(type不是index),有两条数据在分的页中找不到。观察发现加了limit与没有加limit查出来的数据的排序不一样,也就是排序不稳定,也许就是这个不稳定原因造成的吧。解决办法:order by 加limit 中一定要加一个index的字段来排序,这样排序就是稳.........【阅读全文】