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.
完全なdate_time値を保持するdate_timeフィールドを持つテーブルから、日または月ごとにグループ化された行を選択するクエリを作成することは可能ですか?
毎日、sr13、r4、huawei の合計を取得する必要があります。どうすればそれができるかについてのアイデアは、心から感謝します!
You can use DATE() to extract the date from the value,
DATE()
SELECT DATE(date_time) datetime, SUM(sr13) total_sr13, SUM(r4) total_4 FROM TableName GROUP BY DATE(date_time)