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.
MySql テーブルから 8 行を表示していますが、各結果の前に 1. - 8. のように数字を追加する方法を知りたいです。
MySql クエリ行は次のとおりです。
$query=mysql_query("SELECT * FROM (SELECT score,pid from score ORDER BY score ASC) As temp GROUP BY temp.pid ORDER BY temp.score ASC LIMIT 8");