Answers:
SELECT id,
IF(type = 'P', amount, amount * -1) as amount
FROM report
参见http://dev.mysql.com/doc/refman/5.0/en/control-flow-functions.html。
此外,您可以处理条件为null的情况。如果为零:
SELECT id,
IF(type = 'P', IFNULL(amount,0), IFNULL(amount,0) * -1) as amount
FROM report
该部分IFNULL(amount,0)
表示当金额不为null时返回金额,否则返回0。
sql/item_cmpfunc.h 722: Item_func_ifnull(Item *a, Item *b) :Item_func_coalesce(a,b) {}
IF
语句,怎么了?
使用case
语句:
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
。如果不是“ P”,则不会考虑类型。