답변:
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
no가 모두 + ve 인 경우 abs ()를 건너 뛸 수 있습니다.