SELECT id, amount FROM report
我需要amount是amountifreport.type='P'和-amountif 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。
此外,您可以在条件为空时进行处理。在金额为空的情况下:
SELECT id, IF(type = 'P', IFNULL(amount,0), IFNULL(amount,0) * -1) as amount FROM report
该部分IFNULL(amount,0)表示 当数量不为空时返回数量,否则返回 0 。
IFNULL(amount,0)