Jeg tror, at den bedste måde at gøre dette på ville være i PHP-koden, snarere end i SQL.
Du kan opnå dette ved blot at oprette et associativt array i PHP, ved at bruge "tekst"-feltet som en nøgle, der indeholder de data, du ønsker - og udfylde det, mens du trækker information fra databasen.
Et eksempel:
SQL:SELECT * FROM myTable
PHP-kode:
<?php
// Connect to MySQL database
$result = mysql_query($sql_query_noted_above);
$stringsInfo = array();
while ($row = mysql_fetch_assoc($result))
{
if (!isset($stringsInfo[$row['text']]))
{
$stringsInfo[$row['text']] = array('types' => array(), 'idAccounts' => array());
}
$stringsInfo[$row['text']]['types'][] = $row['type'];
$stringsInfo[$row['text']]['idAccounts'][] = $row['idAccount'];
}
?>
Dette vil give dig et array som følger:
'myTextString' => 'types' => 'type1', 'type2', 'type3'
'idAccounts' => 'account1', 'account2'
'anotherTextString' => 'types' => 'type2', 'type4'
'idAccounts' => 'account2', 'account3'
og så videre.
Jeg håber, det er nyttigt.
EDIT:Plakaten bad om hjælp til visning.
<?php
foreach ($stringsInfo as $string => $info)
{
echo $string . '<br />';
echo 'Types: ' . implode(', ', $info['types']); // This will echo each type separated by a comma
echo '<br />';
echo 'ID Accounts: ' . implode(', ', $info['idAccounts']);
}
/* Alternativt kan du sløjfe hvert array indeholdt i $info, hvis du har brug for mere kontrol */
foreach ($stringsInfo as $string => $info)
{
echo $string . '<br />';
echo 'Types: ';
foreach ($info['types'] as $type)
{
echo $type . ' - ';
}
echo '<br />';
echo 'ID Accounts: '
foreach ($info['idAccounts'] as $idAccount)
{
echo $idAccount . ' - ';
}
}