我有一个名为的表,其中包含“组”列和“主题”列

CREATE TABLE survey (
  `group` INT NOT NULL,
  `subject` VARCHAR(16) NOT NULL,
  UNIQUE INDEX (`group`, `subject`)
);

INSERT INTO survey
  VALUES
  (1, 'sports'),
  (1, 'history'),
  (2, 'art'),
  (2, 'music'),
  (3, 'math'),
  (3, 'sports'),
  (3, 'science')
;

我试图找出一个查询,该查询将返回不属于同一组的所有主题对。因此,从上面的示例中,我希望看到在表中返回的这些对:
science - history
science - art
science - music
history - math
sports  - art
sports  - music
history - art
history - music

因此,查询不应返回:
sports - history

作为示例,因为它们都在第1组中。

非常感谢。

最佳答案

SELECT s1.subject,
       s2.subject
FROM   survey s1
       JOIN survey s2
         ON s1.subject < s2.subject
GROUP  BY s1.subject,
          s2.subject
HAVING COUNT(CASE
               WHEN s1.groupid = s2.groupid THEN 1
             END) = 0

关于mysql - SQL查询仅在不同组中的所有成对元素,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5214064/

10-16 22:09