आप इसे PHP और MySQL के संयोजन के साथ कर सकते हैं। अपनी क्वेरी को इसमें बदलें:
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
यह आपको इस तरह की एक परिणाम तालिका देगा:
t1 t2
Section One SubOne,SubTwo
Section Three SubThree
(यदि आप Section Two
. के लिए परिणाम चाहते हैं , निकालें HAVING t2 IS NOT NULL
क्वेरी से शर्त)
फिर आपके PHP में (मैं मान रहा हूँ mysqli
एक कनेक्शन के साथ $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);
आउटपुट:
Array
(
[0] => Array
(
[t1] => Section One
[t2] => Array
(
[0] => SubOne
[1] => SubTwo
)
)
[1] => Array
(
[t1] => Section Three
[t2] => Array
(
[0] => SubThree
)
)
)