Perché non fare il calcolo nel database?
SELECT SUM(price * sold) as total
FROM `inv`;
MODIFICA:
SELECT SUM((replace(price, '$', '') + 0) * sold) as total
FROM `inv`;
Perché non fare il calcolo nel database?
SELECT SUM(price * sold) as total
FROM `inv`;
MODIFICA:
SELECT SUM((replace(price, '$', '') + 0) * sold) as total
FROM `inv`;