SELECT id, amount FROM report
我需要的amount是amount,如果report.type='P'和-amount如果report.type='N'。如何将此添加到上面的查询中?
amount
report.type='P'
-amount
report.type='N'
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 。
IFNULL(amount,0)