简体   繁体   中英

SQL: query related data from multiple tables

I have 4 tables, who all relate to each other in such a way that: TB1 <- TB2 <- TB3 <- TB4 meaning that TB4 holds elements that belongs to a single row in TB3, TB3 holds elements that belongs to a single row in TB2 and finally TB2 holds data that belongs to a single row in TB1. i made this illustration to try to make it more clear 在此处输入图片说明

(edit: DB was suppose to be TB as in table)

I have tried to achieve this by using subqueries as follows:

SELECT TB1.id AS TB1_ID, 
    (SELECT TB2.id AS TB2_ID,
        (SELECT TB3.id AS TB3_ID,
            (SELECT TB4.id AS TB4_ID
            FROM `TB4` AS TB4 WHERE TB4.TB3_id = TB3.id) AS C
        FROM `TB3` AS TB3 WHERE TB3.TB2_id = TB2.id) AS B
    FROM `TB2` AS TB2 WHERE TB2.TB1_id = TB1.id) AS A
FROM `TB1` AS TB1

yet my logic must be flawed: or there is something i am missing about querying related data: as this returns null, even though i know that the tables holds the necessary informations needed to make such a cross combination.

The desired result is a set of nested arrays within an array: one nested array for each tables. so that we ends up with a structure like:

{*, A{*, B{*, C{*} } } }

so that each row from TB1 contains a multidimensional array of elements from TB2 as a variable and each row form TB2 contains a multidimensional array of elements from TB3 as an element and so on...

I have also tried to pull all information as separate queries and then joining them in JS, however turned out to be quit heavy: so i would truly appreciate if anyone knew how to do this in a proper way - thanks a lot in advance

PS. im trying it in my local environment, through use of XAMPP: does this create a problem ?

I think what you want is a series of JOIN s:

SELECT TB1.id AS TB1_ID, TB2.id AS TB2_ID, TB3.id AS TB3_ID, TB4.id AS TB4_ID
FROM TB1
JOIN TB2 ON TB2.TB1_ID = TB1.ID
JOIN TB3 ON TB3.TB2_ID = TB2.ID
JOIN TB4 ON TB4.TB3_ID = TB3.ID

You can then build your desired structure in PHP using something like:

$sql = "SELECT TB1.id AS TB1_ID, TB2.id AS TB2_ID, TB3.id AS TB3_ID, TB4.id AS TB4_ID
FROM TB1
JOIN TB2 ON TB2.TB1_ID = TB1.ID
JOIN TB3 ON TB3.TB2_ID = TB2.ID
JOIN TB4 ON TB4.TB3_ID = TB3.ID";
$result = $conn->query($sql) or die($conn->error);
$output = array();
while ($row = $result->fetch_assoc()) {
    $tb1_id = $row['TB1_ID'];
    $tb2_id = $row['TB2_ID'];
    $tb3_id = $row['TB3_ID'];
    $tb4_id = $row['TB4_ID'];
    if (isset($output[$tb1_id][$tb2_id][$tb3_id])) {
        $output[$tb1_id][$tb2_id][$tb3_id][$tb4_id] = array();
    }
    elseif (isset($output[$tb1_id][$tb2_id])) {
        $output[$tb1_id][$tb2_id][$tb3_id] = array($tb4_id => array());
    }
    elseif (isset($output[$tb1_id])) {
        $output[$tb1_id][$tb2_id] = array($tb3_id => array($tb4_id => array()));
    }
    else {
        $output[$tb1_id] = array($tb2_id => array($tb3_id => array($tb4_id => array())));
    }
}

Here is an attempt that uses JSON functions and other stuff that should work in the latest 5.7 version.

But don't ask about it, because I discovered from this experiment that dealing with nested json's in MySql 5.7 is a real PITA.

Sample data:

drop table if exists Table1;
drop table if exists Table2;
drop table if exists Table3;
drop table if exists Table4;

create table Table1 (id int primary key, col1 varchar(30));
create table Table2 (id int primary key, tbl1_id int, col1 varchar(30));
create table Table3 (id int primary key, tbl2_id int, col1 varchar(30));
create table Table4 (id int primary key, tbl3_id int, col1 varchar(30));

insert into Table1 (id, col1) values
(101, 'A1'),(102, 'A2'),(103, 'A3'),(104, 'A4');

insert into Table2 (id, tbl1_id, col1) values
(201, 101, 'B1'), (202, 102, 'B2'),(203, 103, 'B3');

insert into Table3 (id, tbl2_id, col1) values
(301, 201, 'C1'),(302, 202, 'C2');

insert into Table4 (id, tbl3_id, col1) values
(401, 301, 'D1'), (402, 301, 'D2');

Query:

SELECT t1.id AS t1id, 
GROUP_CONCAT(REPLACE(JSON_OBJECT(t1.id, JSON_ARRAY(t1.col1)),']}',', '),
IFNULL(
(
  SELECT 
  GROUP_CONCAT(
   REPLACE(JSON_OBJECT(t2.id, JSON_ARRAY(t2.col1)),']}',', '),
   IFNULL(
   (
    SELECT 
    GROUP_CONCAT(
     REPLACE(JSON_OBJECT(t3.id, JSON_ARRAY(t3.col1)),']}',', '),
     IFNULL(
     (
       SELECT 
       CONCAT('[', 
        IFNULL(GROUP_CONCAT(JSON_OBJECT(t4.id, JSON_ARRAY(t4.col1))),''), 
        ']') D
       FROM Table4 t4
       WHERE t4.tbl3_id = t3.id
       GROUP BY t4.tbl3_id
     ), '[]'), ']}') C
    FROM Table3 t3
    WHERE t3.tbl2_id = t2.id
    GROUP BY t3.tbl2_id
   ), '[]'), ']}') B
  FROM Table2 t2
  WHERE t2.tbl1_id = t1.id
  GROUP BY t2.tbl1_id
 ), '[]'), ']}') A
FROM Table1 t1
GROUP BY t1.id;

Returns:

id  A
101 {"101": ["A1", {"201": ["B1", {"301": ["C1", [{"401": ["D1"]},{"402": ["D2"]}]]}]}]}
102 {"102": ["A2", {"202": ["B2", {"302": ["C2", []]}]}]}
103 {"103": ["A3", {"203": ["B3", []]}]}
104 {"104": ["A4", []]}

A test on db<>fiddle here

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM