回答:
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)
は、amountが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」でない場合、タイプは考慮されません。
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;
最も簡単な方法はIF()を使用することです。はいMysqlでは条件付きロジックを実行できます。IF関数は、3つのパラメーターCONDITION、TRUE OUTCOME、FALSE OUTCOMEを取ります。
だからロジックは
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
+ veのみの場合は、abs()をスキップできます