Programing

'SELECT'문의 'IF'-열 값에 따라 출력 값 선택

lottogame 2020. 10. 2. 21:20
반응형

'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 일 때 처리 할 수 ​​있습니다. Null 금액의 경우 :

SELECT id, 
       IF(type = 'P', IFNULL(amount,0), IFNULL(amount,0) * -1) as amount
FROM report

부분 IFNULL(amount,0)금액이 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 함수는 CONDITION, TRUE OUTCOME, FALSE OUTCOME 매개 변수 3 개를 사용합니다.

그래서 논리는

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

아니오가 모두 + 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

참고URL : https://stackoverflow.com/questions/5951157/if-in-select-statement-choose-output-value-based-on-column-values

반응형