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_paid と amount_paid があります。支払額の合計で支払いをグループ化したいのですが、最後の支払い日用のフィールドも保持したいと思います。これは可能ですか?または、ユーザー テーブル内に last_date_paid 列を格納する必要がありますか?
SELECT id, SUM(amount_paid), MAX(date_paid) FROM payments GROUP BY id