mysql中limit查询踩坑实战记录
作者:CBeann 时间:2024-01-16 13:38:45
背景
最近项目联调的时候发现了分页查询的一个bug,分页查询总有数据查不出来或者重复查出。
数据库一共14条记录。
如果按照一页10条。那么第一页和第二页的查询SQL和和结果如下。
那么问题来了,查询第一页和第二页的时候都出现了11,12,13的记录,而且都没出现 4 的记录。总有数据查不到这是为啥???
SQL
DROP TABLE IF EXISTS `creative_index`;
CREATE TABLE `creative_index` (
`id` bigint(20) NOT NULL COMMENT 'id',
`creative_id` bigint(20) NOT NULL COMMENT 'creative_id',
`name` varchar(256) DEFAULT NULL COMMENT 'name',
`member_id` bigint(20) NOT NULL COMMENT 'member_id',
`product_id` int(11) NOT NULL COMMENT 'product_id',
`template_id` int(11) DEFAULT NULL COMMENT 'template_id',
`resource_type` int(11) NOT NULL COMMENT 'resource_type',
`target_type` int(11) NOT NULL COMMENT 'target_type',
`show_audit_status` tinyint(4) NOT NULL COMMENT 'show_audit_status',
`bound_adgroup_status` int(11) NOT NULL COMMENT 'bound_adgroup_status',
`gmt_create` datetime NOT NULL COMMENT 'gmt_create',
`gmt_modified` datetime NOT NULL COMMENT 'gmt_modified',
PRIMARY KEY (`id`),
KEY `idx_member_id_product_id_template_id` (`member_id`,`product_id`,`template_id`),
KEY `idx_member_id_product_id_show_audit_status` (`member_id`,`product_id`,`show_audit_status`),
KEY `idx_creative_id` (`creative_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='测试表';
-- ----------------------------
-- Records of creative_index
-- ----------------------------
INSERT INTO `creative_index` VALUES ('1349348501', '511037002', '1', '1', '1', '1000695', '26', '1', '7', '0', '2023-03-16 22:12:56', '2023-03-24 23:38:49');
INSERT INTO `creative_index` VALUES ('1349348502', '511037003', '2', '1', '1', '1000695', '26', '1', '7', '1', '2023-03-16 22:15:29', '2023-03-24 21:23:33');
INSERT INTO `creative_index` VALUES ('1391561502', '512066002', '3', '1', '1', '1000695', '26', '1', '7', '0', '2023-03-23 23:37:34', '2023-03-24 21:24:04');
INSERT INTO `creative_index` VALUES ('1394049501', '511937501', '4', '1', '1', '1000942', '2', '1', '0', '0', '2023-03-24 14:00:46', '2023-03-25 15:19:37');
INSERT INTO `creative_index` VALUES ('1394221002', '511815502', '5', '1', '1', '1000694', '26', '1', '7', '0', '2023-03-23 17:00:41', '2023-03-24 21:23:39');
INSERT INTO `creative_index` VALUES ('1394221003', '511815503', '6', '1', '1', '1000694', '26', '1', '3', '0', '2023-03-23 17:22:00', '2023-03-24 21:23:44');
INSERT INTO `creative_index` VALUES ('1394257004', '512091004', '7', '1', '1', '1000694', '26', '1', '7', '0', '2023-03-23 17:23:21', '2023-03-24 21:24:11');
INSERT INTO `creative_index` VALUES ('1394257005', '512091005', '8', '1', '1', '1000694', '26', '1', '3', '0', '2023-03-23 17:31:05', '2023-03-25 01:10:58');
INSERT INTO `creative_index` VALUES ('1403455006', '512170006', '9', '1', '1', '1000694', '26', '1', '0', '0', '2023-03-25 15:31:02', '2023-03-25 15:31:25');
INSERT INTO `creative_index` VALUES ('1403455007', '512170007', '10', '1', '1', '1000695', '26', '1', '0', '0', '2023-03-25 15:31:04', '2023-03-25 15:31:28');
INSERT INTO `creative_index` VALUES ('1406244001', '512058001', '11', '1', '1', '1000694', '26', '1', '3', '0', '2023-03-23 21:28:11', '2023-03-24 21:23:56');
INSERT INTO `creative_index` VALUES ('1411498502', '512233003', '12', '1', '1', '1000694', '26', '1', '0', '0', '2023-03-25 14:34:37', '2023-03-25 17:00:24');
INSERT INTO `creative_index` VALUES ('1412288501', '512174007', '13', '1', '1', '1000694', '26', '1', '7', '0', '2023-03-25 01:11:53', '2023-03-25 01:12:34');
INSERT INTO `creative_index` VALUES ('1412288502', '512174008', '14', '1', '1', '1000942', '2', '1', '0', '0', '2023-03-25 11:46:44', '2023-03-25 15:20:58');
解决问题
从查询结果可以看出,查询结果显然不是按照某一列排序的(很乱)。
那么是不是加一个排序规则就可以了呢?抱着试一试的态度,还真解决了。
分析问题
为什么limit查询不加order by就会出现 分页查询总有数据查不出来或者重复查出? 是不是有隐含的order排序?
此时explain登场(不了解的百度)。
索引的作用有两个:检索、排序
因为两个SQL使用了不同的索引(排序规则),索引limit出来就会出现上面的问题,问题解开了。
来源:https://blog.csdn.net/qq_37171353/article/details/129775125
标签:mysql,limit,查询
0
投稿
猜你喜欢
pycharm console 打印中文为乱码问题及解决
2023-06-15 22:30:02
30种SQL语句优化的方法汇总
2024-01-24 22:55:52
js运算精度丢失的2个解决方法
2024-04-10 10:38:02
基于Python编写一个B站全自动抽奖的小程序
2021-05-03 02:11:07
xhEditor的异步载入实现代码
2022-01-29 10:40:28
解决python使用list()时总是报错的问题
2021-11-27 23:34:36
基于ajax与msmq技术的消息推送功能实现代码
2024-05-03 15:31:52
python放大图片和画方格实现算法
2023-05-21 15:22:41
最新LOGO设计流行趋势——叶子
2007-10-02 18:26:00
Java使用jdbc连接实现对MySQL增删改查操作的全过程
2024-01-27 05:07:51
fetch 使用及如何接收JS传值
2024-04-29 13:11:21
ASP检测服务器相关的一些代码
2008-01-25 19:20:00
MySQL数据库连接异常汇总(值得收藏)
2024-01-22 16:23:55
python编写函数注意事项总结
2021-08-19 22:15:10
python3 tkinter实现添加图片和文本
2022-08-07 04:28:17
laravel orm 关联条件查询代码
2024-03-08 02:57:53
Web2.0电子商务网站的交互设计
2009-05-15 12:08:00
在vue中使用G2图表的示例代码
2024-05-28 15:52:22
Python操作mongodb数据库的方法详解
2024-01-16 03:08:39
Python初识逻辑与if语句及用法大全
2023-11-21 16:17:24