我试图编写一个SQL查询来生成一个表,其中包含每个“父”(在本例中为Element)的所有“子”项。
为清楚起见,我在下面创建了此问题的简化实例,并设置了一个db-fiddle实例。
给出以下虚拟数据:
-- -----------------------------------------------------
-- Table `Element`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `Element` (
`idElement` INT NOT NULL AUTO_INCREMENT,
`Element_Name` VARCHAR(45) NULL,
PRIMARY KEY (`idElement`))
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `Property`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `Property`
(
`idProperty` INT NOT NULL AUTO_INCREMENT,
`Property_Text` VARCHAR(45) NULL,
`Property_Node_ID` INT NULL,
`Element_idElement` INT NOT NULL,
PRIMARY KEY (`idProperty`),
INDEX `fk_Property_Element1_idx` (`Element_idElement` ASC),
CONSTRAINT `fk_Property_Element1`
FOREIGN KEY (`Element_idElement`)
REFERENCES `Element` (`idElement`)
)
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `Property_2`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `Property_2`
(
`idProperty_2` INT NOT NULL AUTO_INCREMENT,
`Property_2_Text` VARCHAR(45) NULL,
`Property_Node_ID` INT NULL,
`Element_idElement` INT NOT NULL,
PRIMARY KEY (`idProperty_2`),
INDEX `fk_Property_2_Element_idx` (`Element_idElement` ASC),
CONSTRAINT `fk_Property_2_Element`
FOREIGN KEY (`Element_idElement`)
REFERENCES `Element` (`idElement`)
)
ENGINE = InnoDB;
INSERT INTO `Element` (`idElement`, `Element_Name`)
VALUES (NULL, 'element_1');
INSERT INTO `Element` (`idElement`, `Element_Name`)
VALUES (NULL, 'element_2');
INSERT INTO `Property` (`idProperty`, `Property_Text`, `Property_Node_ID`, `Element_idElement`)
VALUES (NULL, 'property_a', NULL, '1');
INSERT INTO `Property` (`idProperty`, `Property_Text`, `Property_Node_ID`, `Element_idElement`)
VALUES (NULL, 'property_b', NULL, '1');
INSERT INTO `Property` (`idProperty`, `Property_Text`, `Property_Node_ID`, `Element_idElement`)
VALUES (NULL, 'property_c', NULL, '2');
INSERT INTO `Property_2` (`idProperty_2`, `Property_2_Text`, `Property_Node_ID`, `Element_idElement`)
VALUES (NULL, 'property_2_a', NULL, '1');
INSERT INTO `Property_2` (`idProperty_2`, `Property_2_Text`, `Property_Node_ID`, `Element_idElement`)
VALUES (NULL, 'property_2_b', NULL, '2');
INSERT INTO `Property_2` (`idProperty_2`, `Property_2_Text`, `Property_Node_ID`, `Element_idElement`)
VALUES (NULL, 'property_2_c', NULL, '2');
我想输出以下内容,其中逐行显示元素及其属性的每个唯一组合。
它们首先按元素排序,然后按第一个属性排序,最后按最后一个属性排序:
-------------------------------------
element | property | property_2
-------------------------------------
element_1 | property_a | property_2_a
element_1 | property_b | property_2_a
element_2 | property_c | property_2_b
element_2 | property_c | property_2_c
请查看指向db-fiddle的链接: https://www.db-fiddle.com/f/csqTVJFTtpodqPksQtyrbs/0。任何帮助将不胜感激
答案 0 :(得分:0)
我不太了解这个问题-命名政策令人困惑-但是以下内容未能解决问题的哪一部分?
SELECT e.Element_Name element
, p.Property_text property
, p2.Property_2_text property_2
FROM Element e
JOIN Property p
ON p.Element_idElement = e.idElement
JOIN Property_2 p2
ON p2.Element_idElement = e.idElement
ORDER
BY element
, property
, property_2;