Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

PHP SQL Join Query mesclar conteúdo em Multi-Array


Você pode fazer isso com uma combinação de PHP e MySQL. Altere sua consulta para isso:
SELECT section_titel as t1, GROUP_CONCAT(sub_section_titel) as t2 
FROM sections LEFT JOIN sub_sections ON section_id = sId
GROUP BY t1
HAVING t2 IS NOT NULL

Isso lhe dará uma tabela de resultados como esta:
t1              t2
Section One     SubOne,SubTwo
Section Three   SubThree

(Se você quiser um resultado para a Section Two , remova o HAVING t2 IS NOT NULL condição da consulta)

Então no seu PHP (estou assumindo mysqli com uma conexão $conn )
$result = mysqli_query($conn, $sql) or die(mysqli_error($conn));
$out = array();
while ($row = mysqli_fetch_array($result)) {
   $out[] = array('t1' => $row['t1'], 't2' => explode(',', $row['t2']));
}
print_r($out);

Resultado:
Array
(
    [0] => Array
        (
            [t1] => Section One
            [t2] => Array
                (
                    [0] => SubOne
                    [1] => SubTwo
                )    
        )

    [1] => Array
        (
            [t1] => Section Three
            [t2] => Array
                (
                    [0] => SubThree
                )
        )
)