Copying a SUM Value
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
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
Sorry, you can't reply to this topic. It has been closed.
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.