Câu trả lời:
SELECT id,
IF(type = 'P', amount, amount * -1) as amount
FROM report
Xem http://dev.mysql.com/doc/refman/5.0/en/control-flow-fifts.html .
Ngoài ra, bạn có thể xử lý khi điều kiện là null. Trong trường hợp số tiền không có giá trị:
SELECT id,
IF(type = 'P', IFNULL(amount,0), IFNULL(amount,0) * -1) as amount
FROM report
Phần IFNULL(amount,0)
có nghĩa là khi số tiền không phải là số tiền trả về thì số tiền khác trả về 0 .
sql/item_cmpfunc.h 722: Item_func_ifnull(Item *a, Item *b) :Item_func_coalesce(a,b) {}
IF
tuyên bố, có gì sai?
Sử dụng một case
tuyên bố:
select id,
case report.type
when 'P' then amount
when 'N' then -amount
end as amount
from
`report`
if report.type = 'P' use amount, otherwise use -amount for anything else
. nó sẽ không xem xét loại nếu nó không phải là 'P'.
SELECT CompanyName,
CASE WHEN Country IN ('USA', 'Canada') THEN 'North America'
WHEN Country = 'Brazil' THEN 'South America'
ELSE 'Europe' END AS Continent
FROM Suppliers
ORDER BY CompanyName;
Cách đơn giản nhất là sử dụng IF () . Có Mysql cho phép bạn làm logic có điều kiện. Hàm IF có 3 tham số ĐIỀU KIỆN, TRUE OUTCOME, FALSE OUTCOME.
Vậy logic là
if report.type = 'p'
amount = amount
else
amount = -1*amount
SQL
SELECT
id, IF(report.type = 'P', abs(amount), -1*abs(amount)) as amount
FROM report
Bạn có thể bỏ qua abs () nếu tất cả không chỉ là + ve
Bạn cũng có thể thử điều này
SELECT id , IF(type='p', IFNULL(amount,0), IFNULL(amount,0) * -1) as amount FROM table