Question about your answer:
SELECT SUM(t.price) AS subtotal, SUM(t.price) * 3.0 AS fees, SUM(t.price + fees) AS total FROM CART t
If it is not, if you cannot reuse the column alias within the same SQL statement:
SELECT SUM(t.price) AS subtotal, SUM(t.price) * 3.0 AS fees, SUM(t.price + (t.price * 3.0)) AS total FROM CART t
source share