Mysql multiplizieren
SELECT
Pieces, Price,
Pieces * Price as 'Total'
FROM myTable
Grepper
SELECT
Pieces, Price,
Pieces * Price as 'Total'
FROM myTable
update products set price = price * 2;