MySQL Forums
Forum List  »  Newbie

Copying a SUM Value
Posted by: Michael Smith
Date: February 27, 2023 02:29PM

I have a table with a column called TAX.

I am trying to copy the Sum of that column to another column called TOTTAX.

I am using the code below.

SELECT SUM(TOTAL) AS "TTotal" FROM Invoices01;
Update Invoices01 set TOTTAX = TTotal;

This code does not do anything. I would appreciate any suggestions?

Mike

Options: ReplyQuote


Subject
Written By
Posted
Copying a SUM Value
February 27, 2023 02:29PM
February 27, 2023 03:23PM
February 27, 2023 03:53PM
February 27, 2023 04:06PM
February 27, 2023 06:00PM
February 27, 2023 07:12PM
February 28, 2023 05:44AM
February 28, 2023 10:08AM
March 01, 2023 09:23AM
March 01, 2023 09:34AM
March 02, 2023 05:28AM
March 02, 2023 01:43PM


Sorry, only registered users may post in this forum.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.