Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
DESC を注文する方法を考えていましたが、すべての結果を垂直ではなく水平に表示します。
$sql = "SELECT name WHERE id > 5 ORDER BY id DESC";
次を使用して、すべての名前をカンマ区切りのリストに入れることができますgroup_concat()。
group_concat()
select group_concat(name order by id) as names from t where id > 5
次に、リストから各名前を分割できます。(また、カンマが正しい区切り文字でない場合は、separatorキーワードを使用できます。)
separator