SELECT id, amount FROM report
我需要金额是金额,如果报告。如果report.type='N',则type='P'和-amount。我如何将此添加到上面的查询?
SELECT id, amount FROM report
我需要金额是金额,如果报告。如果report.type='N',则type='P'和-amount。我如何将此添加到上面的查询?
当前回答
select
id,
case
when report_type = 'P'
then amount
when report_type = 'N'
then -amount
else null
end
from table
其他回答
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
你也可以试试这个
SELECT id , IF(type='p', IFNULL(amount,0), IFNULL(amount,0) * -1) as amount FROM table
SELECT id, amount
FROM report
WHERE type='P'
UNION
SELECT id, (amount * -1) AS amount
FROM report
WHERE type = 'N'
ORDER BY id;
使用case语句:
select id,
case report.type
when 'P' then amount
when 'N' then -amount
end as amount
from
`report`