SELECT id,
IF(type = 'P', amount, amount * -1) as amount
FROM report
Se http://dev.mysql.com/ doc/refman/5.0/en/control-flow-functions.html .
Dessutom kan du hantera när villkoret är null. Vid ett nullbelopp:
SELECT id,
IF(type = 'P', IFNULL(amount,0), IFNULL(amount,0) * -1) as amount
FROM report
Delen IFNULL(amount,0)
betyder när beloppet inte är null returbelopp annars returnera 0 .