Tại sao không thực hiện phép tính trong cơ sở dữ liệu?
SELECT SUM(price * sold) as total
FROM `inv`;
CHỈNH SỬA:
SELECT SUM((replace(price, '$', '') + 0) * sold) as total
FROM `inv`;
Tại sao không thực hiện phép tính trong cơ sở dữ liệu?
SELECT SUM(price * sold) as total
FROM `inv`;
CHỈNH SỬA:
SELECT SUM((replace(price, '$', '') + 0) * sold) as total
FROM `inv`;