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.
販売数量が最も多い月を表示する必要があります。私はそれを行う方法がわかりません。助けてくださいよろしくお願いします。私は持っている:
ID、prod_name、価格、q_sold、月
q_sold は、入力された月数と合計する必要があります。
結果を合計で並べ替え、最初のエントリのみを取得できますlimit 1
limit 1
select `month`, sum(q_sold) as sold_sum from your_table group by `month` order by sold_sum desc limit 1