SELECT id, amount FROM report
report.type='P'
の場合はamount
、-amount
の場合はreport.type='N'
にするにはamount
が必要です。これを上記のクエリに追加するにはどうすればよいですか。
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の場合にも対処できます。金額がnullの場合:
SELECT id,
IF(type = 'P', IFNULL(amount,0), IFNULL(amount,0) * -1) as amount
FROM report
IFNULL(amount,0)
という部分は、 amountがnullでない場合はamount、それ以外の場合は0 を返します。
case
ステートメントを使用してください。
select id,
case report.type
when 'P' then amount
when 'N' then -amount
end as amount
from
`report`
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;
select
id,
case
when report_type = 'P'
then amount
when report_type = 'N'
then -amount
else null
end
from table
最も簡単な方法は IF() を使うことです。はいMysqlはあなたが条件付き論理をすることを可能にします。 IF関数は3つのパラメータをとります。条件、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
すべてのnoが+ veのみの場合は、abs()をスキップすることができます。
SELECT id, amount
FROM report
WHERE type='P'
UNION
SELECT id, (amount * -1) AS amount
FROM report
WHERE type = 'N'
ORDER BY id;
これを試してみましょう:
SELECT
id , IF(report.type = 'p', IFNULL(amount,0), IFNULL(amount,0) * -1) as amount
FROM report
あなたもこれを試すことができます
Select id , IF(type=='p', IFNULL(amount,0), IFNULL(amount,0) * -1) as amount from table