【问题标题】:Reducing row count of CROSS JOIN + LEFT JOIN where there is no linkage减少没有链接的 CROSS JOIN + LEFT JOIN 的行数
【发布时间】:2015-09-19 02:29:21
【问题描述】:

我已经为此苦苦挣扎了一段时间。我有一个SQLFiddle with the same approximate contents of this question.

我有三个表 itemsprofiles 和链接表 posts,它是前两个表的键,带有示例数据的架构:

create table items ( 
  item_id int unsigned primary key auto_increment,
  title varchar(255)
);

insert into items (item_id, title) VALUES(1, 'Item One');
insert into items (item_id, title) VALUES(2, 'Item Two');
insert into items (item_id, title) VALUES(3, 'Item Three');
insert into items (item_id, title) VALUES(4, 'Item Four');
insert into items (item_id, title) VALUES(5, 'Item Five');

create table profiles (
  profile_id int unsigned primary key auto_increment,
  profile_name varchar(255)
);

insert into profiles (profile_id, profile_name) VALUES(1, 'Bob');
insert into profiles (profile_id, profile_name) VALUES(1, 'Mark');
insert into profiles (profile_id, profile_name) VALUES(1, 'Nancy');

create table posts (
  post_id int unsigned primary key auto_increment,
  item_id int unsigned, -- Relates to items.item_id
  profile_id int unsigned, -- Relates to profile.profile_id,
  post_date DATETIME
);

insert into posts (item_id, profile_id, post_date) values(1, 1, NOW());
insert into posts (item_id, profile_id, post_date) values(2, 2, NOW());
insert into posts (item_id, profile_id, post_date) values(2, 2, NOW());

我正在使用以下查询来产生几乎正确的结果:

SELECT 
  `items`.`item_id`,
  `items`.`title`,
  `profiles`.`profile_id`,
  `profiles`.`profile_name`,
  `posts`.`post_id`, 
  `posts`.`post_date`
  FROM `items` 
  CROSS JOIN `profiles`
  LEFT JOIN  `posts` ON `items`.`item_id` = `posts`.`item_id`
    AND `posts`.`profile_id` = `profiles`.`profile_id`;

对于我的特定应用,这是次优的。我得到了很多我的特定实现不需要的“额外”行。最终结果如下所示:

+------------|------------|---------|-----------+
| Item Name  | Profile ID | Post ID | Post Date |
+------------+------------+---------+-----------+
| Item One   | 1          | 1       | 2015-...  | -- Bob Posted this
| Item One   | 2          | NULL    | NULL      | -- No one else did
| Item One   | 3          | NULL    | NULL      |
| Item Two   | 1          | 2       | 2015-...  | -- Bob posted this
| Item Two   | 2          | 3       | 2015-...  | -- So did mark
| Item Two   | 3          | NULL    | NULL      | -- Nancy didn't
| Item Three | 1          | NULL    | NULL      | 
| Item Three | 2          | NULL    | NULL      |
| Item Three | 3          | 4       | 2015-...  | -- Only nancy posted #3
| Item Four  | 1          | NULL    | NULL      | -- No one posted #4
| Item Four  | 2          | NULL    | NULL      |
| Item Four  | 3          | NULL    | NULL      | 
| Item Five  | 1          | NULL    | NULL      | -- No one posted #5
| Item Five  | 2          | NULL    | NULL      |
| Item Five  | 3          | NULL    | NULL      | 
+------------+------------+---------+-----------+

这完全按照我的要求进行 - 每个项目返回 3 次(与配置文件计数相对应)。但是,如果在没有链接的项目 #4 和 #5 的情况下,它们只返回一次,并且 profile_id 为 NULL,这将是理想的,如下所示:

+------------|------------|---------|-----------+
| Item Name  | Profile ID | Post ID | Post Date |
+------------+------------+---------+-----------+
| Item One   | 1          | 1       | 2015-...  | -- Bob Posted this
| Item One   | 2          | NULL    | NULL      | -- No one else did
| Item One   | 3          | NULL    | NULL      |
| Item Two   | 1          | 2       | 2015-...  | -- Bob posted this
| Item Two   | 2          | 3       | 2015-...  | -- So did mark
| Item Two   | 3          | NULL    | NULL      | -- Nancy didn't
| Item Three | 1          | NULL    | NULL      | 
| Item Three | 2          | NULL    | NULL      |
| Item Three | 3          | 4       | 2015-...  | -- Nancy posted #3
| Item Four  | NULL       | NULL    | NULL      | -- **No one posted #3 and #4
| Item Five  | NULL       | NULL    | NULL      | -- Only need #3 and #4 once**
+------------+------------+---------+-----------+

虽然在此示例中这仅转换为少 4 行,但在我的实际应用程序中,有很多项目,但配置文件和帖子并不多。所以这个小改动可以显着减少服务器端的语言处理。

谁能指出我正确的方向,将交叉连接限制在我有某种链接的地方?

【问题讨论】:

  • 写得很好的问题,有脚本和小提琴。所有人都像 A.B.卡罗尔做到了!

标签: mysql join cross-join


【解决方案1】:
SELECT  `items`.`item_id`,
        `items`.`title`,
        `profiles`.`profile_id`,
        `profiles`.`profile_name`,
        `posts`.`post_id`, 
        `posts`.`post_date`
FROM    `items` 
LEFT JOIN
        `profiles`
ON      EXISTS
        (
        SELECT  NULL
        FROM    `posts`
        WHERE   `posts`.`item_id` = `items`.`item_id`
        )
LEFT JOIN
        `posts`
ON      `items`.`item_id` = `posts`.`item_id`
        AND `posts`.`profile_id` = `profiles`.`profile_id`
ORDER BY
        `items`.`item_id`, `profiles`.`profile_id`

http://sqlfiddle.com/#!9/c81b1/41

【讨论】:

  • 我真的很好奇它是如何工作的,如果你能稍微扩展一下,那就太好了,但否则,我被震撼了,真诚地谢谢你!
  • @A.B.Carroll:您不会对配置文件进行交叉联接,而是仅根据items 进行具有真或假条件的左联接。这个条件是“那个项目上有帖子”吗?如果有,则条件为真,并且所有配置文件都被选中,就像使用交叉连接一样;如果没有,则条件为假,并从profiles 中选择单个 NULL 记录。其余的都是一样的。
猜你喜欢
  • 2019-09-03
  • 2015-11-03
  • 2022-01-09
  • 1970-01-01
  • 1970-01-01
  • 2016-04-23
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多