반응형
'SELECT'문의 'IF'-열 값에 따라 출력 값 선택
SELECT id, amount FROM report
내가 필요 amount
로 amount
하는 경우 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
반응형
'Programing' 카테고리의 다른 글
동일한 catch 절에서 여러 Java 예외를 포착 할 수 있습니까? (0) | 2020.10.02 |
---|---|
npm 스크립트에 명령 줄 인수 보내기 (0) | 2020.10.02 |
jQuery hasAttr checking to see if there is an attribute on an element [duplicate] (0) | 2020.10.02 |
Bash에서 부분 문자열 추출 (0) | 2020.10.02 |
ASP.NET MVC Framework에서 여러 제출 단추를 어떻게 처리합니까? (0) | 2020.09.30 |