mysqlbinlog 解析
记录根据 binlog 日志文件,解析出指定之间范围的 sql 变更语句其中 binlog_mysqlbin.000010 为 binlog 日志文件mysqlbinlog -v --base64-output=decode-rows binlog_mysqlbin.000010 --start-datetime="2022-10-27 21:25:40" --stop-dat
记录根据 binlog 日志文件,解析出指定之间范围的 sql 变更语句其中 binlog_mysqlbin.000010 为 binlog 日志文件mysqlbinlog -v --base64-output=decode-rows binlog_mysqlbin.000010 --start-datetime="2022-10-27 21:25:40" --stop-dat
查看连接数配置(MySQL 服务器允许的最大连接数 16384)mysql -u root -proot -e "show variables like '%max_connections%'"查看当前连接数方法1:mysql -u root -proot -e "show full processlist"(需要用管理员帐号)方法2:mysql -u root -proot -e "status
乐观锁使用条件限制,实现乐观锁假设库存 num=5 情况1(减库存成功)update 库存表 set num=num-5 where num-5 >= 0 and id=1; // 减5库存,影响行数1情况2(减库存失败)update 库存表 set num=num-6 where num-6 >= 0 and id=1; // 减6库存,影响行数0数据表加 version 字段,实现
在开发中经常遇到这样一类需求:取每种类型排名前几的数据。在此我简称它为组内排序。以下,我借鉴了别人的方法并添加自己的想法,就这类问题做一下理解:数据准备CREATE TABLE `test` ( `id` int(11) NOT NULL AUTO_INCREMENT, `type` varchar(255) DEFAULT NULL, `variety` varchar(255) D