SELECT id, amount FROM report
我需要amount是amount如果report.type='P'和-amount如果report.type='N' .我如何添加到上述查询?
amount
report.type='P'
-amount
report.type='N'
dphi5xsq1#
SELECT id, IF(type = 'P', amount, amount * -1) as amount FROM report
参见https://dev.mysql.com/doc/refman/8.0/en/flow-control-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 else返回0*。
IFNULL(amount,0)
kq0g1dla2#
使用case语句:
case
select id, case report.type when 'P' then amount when 'N' then -amount end as amount from `report`
6ss1mwsb3#
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;
brgchamk4#
select id, case when report_type = 'P' then amount when report_type = 'N' then -amount else null end from table
iezvtpos5#
最简单的方法是使用一个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
如果所有的no都是+ve,你可以跳过abs()
wpcxdonn6#
SELECT id, amount FROM report WHERE type='P' UNION SELECT id, (amount * -1) AS amount FROM report WHERE type = 'N' ORDER BY id;
wz1wpwve7#
你也可以试试这个
SELECT id , IF(type='p', IFNULL(amount,0), IFNULL(amount,0) * -1) as amount FROM table
7条答案
按热度按时间dphi5xsq1#
参见https://dev.mysql.com/doc/refman/8.0/en/flow-control-functions.html。
此外,您可以在条件为null时进行处理。在金额为null的情况下:
部分
IFNULL(amount,0)
表示 * 当amount不为null时返回amount else返回0*。kq0g1dla2#
使用
case
语句:6ss1mwsb3#
brgchamk4#
iezvtpos5#
最简单的方法是使用一个IF()。是的Mysql允许你做条件逻辑。IF函数需要3个参数CONDITION,TRUE OUTCOME,FALSE OUTCOME。
所以逻辑是
SQL语句
如果所有的no都是+ve,你可以跳过abs()
wpcxdonn6#
wz1wpwve7#
你也可以试试这个