gpt4 book ai didi

Mysql order by 连接查询速度极慢

转载 作者:行者123 更新时间:2023-11-29 12:29:15 25 4
gpt4 key购买 nike

查询:

SELECT `files`.*, `file_status`.`downloaders` FROM `files` 
INNER JOIN `file_status` ON `files`.file_id = `file_status`.file_id
WHERE `files`.type`> 0 AND `files`.type` <= 2
ORDER BY `downloaders` DESC
LIMIT 50

表格:

CREATE TABLE IF NOT EXISTS `files` (
`file_id` int(11) NOT NULL,
`name` varchar(150) COLLATE utf8_unicode_ci NOT NULL,
`type` int(11) NOT NULL,
`description` text COLLATE utf8_unicode_ci NOT NULL,
`user` varchar(35) COLLATE utf8_unicode_ci NOT NULL,
`size` bigint(20) NOT NULL,
`upload_time` int(11) NOT NULL,
PRIMARY KEY (`file_id`),
KEY `type` (`type`),
FULLTEXT KEY `name_full` (`name`),
FULLTEXT KEY `description` (`description`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


CREATE TABLE IF NOT EXISTS `file_status` (
`file_id` int(11) NOT NULL,
`downloaders` int(11) NOT NULL,
`complete` int(11) NOT NULL,
`last_update` int(11) NOT NULL,
PRIMARY KEY (`file_id`),
KEY `downloaders` (`downloaders`),
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

此查询对表中的 200k 条目执行 5 秒。表格稍后会有更多条目,所以我担心这将是一场彻底的灾难..

如果我通过正常执行来删除订单。

有什么方法可以加快速度(除了将列移到第一个表之外)?

解释:

id  select_type table       type    possible_keys   key key_len     ref             rows    Extra
1 SIMPLE files ALL PRIMARY,type NULL NULL NULL 256956 Using where; Using temporary; Using filesort
1 SIMPLE file_status eq_ref PRIMARY PRIMARY 4 x.files.file_id 1 NULL

最佳答案

极其hacky:

SELECT * FROM `files` AS x INNER JOIN (
SELECT `file_id`, downloaders FROM `file_status` WHERE `file_id` IN (
SELECT `file_id` FROM `files` WHERE `type`>0 AND `type`<=2
) ORDER BY `downloaders` DESC LIMIT 50
) as y ON x.`file_id` = y.`file_id`
INNER JOIN `file_status` ON x.`file_id` = `file_status`.`file_id`

第一个内连接是因为否则mysql说它不支持子查询中的LIMIT

我们对每个表使用子查询,以使mysql使用正确的索引(键)

这会立即执行

关于Mysql order by 连接查询速度极慢,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27842439/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com