xxxxxxxxxx
-- Assuming a table named 'table_name'
-- with a column 'column1' and 'column2'
-- where the calculation will be performed
-- Update the table and set the calculated values in new columns
UPDATE table_name
SET new_column1 = column1 * 2, -- Perform the calculation here
new_column2 = column2 + 10 -- Perform another calculation here