0

我花了几个小时制作了一个 SQL 查询,它执行 aJOIN并将两列排序在一起,这是我以前没有处理过的。这是查询:

SELECT `m`.`id`, `m`.`primary_category_id`, `m`.`primary_category_priority`, `m`.`description`
FROM (`merchant` AS m)
LEFT JOIN `merchant_category`
    ON `merchant_category`.`merchant_id` = `m`.`id`
WHERE
    `merchant_category`.`category_id` = '2'
    OR `m`.`primary_category_id` = '2'
GROUP BY `m`.`id`
ORDER BY
    LEAST(merchant_category.priority = 0, `primary_category_priority` = 0) ASC,
    LEAST(merchant_category.priority, `primary_category_priority` ) ASC
LIMIT 10

它必须将两列排序在一起,一列来自 Mercer_category 表,一列来自商人表,以便将它们排序在一起。每一行merchant都有一个“主要”类别,直接在表中引用,以及零个或多个“次要”类别,存储在merchant_category表中。现在它工作正常,但速度很慢:通常在我的生产数据库上超过一分钟。我想JOIN加上复杂的排序会导致问题,但我能做什么?

编辑这是两个表的模式:

CREATE TABLE IF NOT EXISTS `merchant` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) CHARACTER SET utf8 NOT NULL,
  `primary_category_id` int(11) NOT NULL,
  `primary_category_priority` int(10) unsigned NOT NULL DEFAULT '0',
  `description` mediumtext CHARACTER SET utf8 NOT NULL,
  PRIMARY KEY (`id`)
)

CREATE TABLE IF NOT EXISTS `merchant_category` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `merchant_id` int(10) NOT NULL,
  `category_id` int(10) NOT NULL,
  `priority` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
)
4

2 回答 2

2

尝试在第二张表上添加外键约束,

CREATE TABLE IF NOT EXISTS `merchant_category` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `merchant_id` int(10) NOT NULL,
  `category_id` int(10) NOT NULL,
  `priority` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  CONSTRAINT mc_fk FOREIGN KEY (`merchant_id`) REFERENCES `merchant`(`id`)
)
于 2012-09-18T01:17:41.863 回答
1

您强制它LEAST为每一行运行(两次!)以便对其进行排序。它不能为此使用索引。

于 2012-09-18T00:56:34.937 回答