简体   繁体   中英

How do i sum up value from multiple rows from one table base on a condition and insert the sum up value to different table in mysql?

I am trying to select a value from a table( daily_interest_tbl ) and sum up the value base on the customer ID and insert the sum up value and the customer ID to a different table ( monthly_tbl ).

The query will be call in an event to run end of every month. 在此处输入图片说明

在此处输入图片说明

try:

INSERT INTO monthly_tbl (NAMES_OF_THE_RESPECTIVE_COLUMNS_COMMA_SEPARATED)
(
  SELECT daily_interest_tbl.customerID, SUM(daily_interest_tbl.NAME_OF_THE_VALUE_YOU_WANT_TO_SUM_UP)
  FROM daily_interest_tbl
  GROUP BY customerID
)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM