[mysql] ‘SELECT’문에서 ‘IF’-열 값을 기반으로 출력 값을 선택하십시오.

SELECT id, amount FROM report

내가 필요 amountamount하는 경우 report.type='P'-amount경우 report.type='N'. 위의 쿼리에 이것을 어떻게 추가합니까?



답변

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을 반환 합니다.


답변

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 개의 매개 변수 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 ()를 건너 뛸 수 있습니다.


답변

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(type='p', IFNULL(amount,0), IFNULL(amount,0) * -1) as amount FROM table