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.
日付、距離、および TimeForDistance を含むテーブルがあります...
MySQL ステートメントを使用して月あたりの平均速度を計算する方法はありますか?
どんな助けでも本当に感謝します!
私はあなたがこのようなものを探していると思います:
SELECT YEAR(my_date) as my_year, MONTH(my_date) as my_month, sum(Distance) / sum(TimeForDistance) AS velocity FROM your_table GROUP BY my_year, my_month ORDER BY my_year, my_month