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.
「stats」テーブルと「id」、「playername」、「point」、「asist」列があります。この写真のテーブルのように作成したいと思います。
例:
たった1つのクエリでそれを行うにはどうすればよいですか?
UNION ALLそのために演算子を使用できます
UNION ALL
SELECT 'Points','Leaders' UNION ALL SELECT Playername,point order by point desc UNION ALL SELECT 'AsIst','Leaders' UNION ALL SELECT Playername,asist order by asist desc
お役に立てれば。