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.
次のようなデータベースがあります。
名前、曜日、電話
day は日付、calls は電話をかけた回数を表します。その日に行われた通話の総数を返す SQL 構文はありますか? 私はそのCOUNT DISTINCTを推測していますが、たとえば2人のインスタンスを同じ日に返すことはできず、戻り値は両方の合計になるはずです。
SELECT Day, SUM(Calls) FROM table GROUP BY Day;