MySQL & MSSQL Tutorial: Combine Multiple Rows Into A Single, Comma Delineated List
In MySQL with PHP: <? $delimiter = “, “; $count = 0; $loop = mysql_query(“SELECT S.suffix FROM people P INNER JOIN surnames S on P.suffix_id = S.id”) or die (‘cannot select merged data’); while...