web-dev-qa-db-ja.com

'SELECT'ステートメントの 'IF' - 列値に基づいて出力値を選択します

SELECT id, amount FROM report

report.type='P'の場合はamount-amountの場合はreport.type='N'にするにはamountが必要です。これを上記のクエリに追加するにはどうすればよいですか。

643
Michael
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)という部分は、 amountがnullでない場合はamount、それ以外の場合は0 を返します。

974
Felipe Buccioni

caseステートメントを使用してください。

select id,
    case report.type
        when 'P' then amount
        when 'N' then -amount
    end as amount
from
    `report`
238
mellamokb
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;
93
user1210826
select 
  id,
  case 
    when report_type = 'P' 
    then amount 
    when report_type = 'N' 
    then -amount 
    else null 
  end
from table
37
sang kaul

最も簡単な方法は IF() を使うことです。はいMysqlはあなたが条件付き論理をすることを可能にします。 IF関数は3つのパラメータをとります。条件、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()をスキップすることができます。

14
aWebDeveloper
SELECT id, amount
FROM report
WHERE type='P'

UNION

SELECT id, (amount * -1) AS amount
FROM report
WHERE type = 'N'

ORDER BY id;
11
linitux

これを試してみましょう:

 SELECT
    id , IF(report.type = 'p', IFNULL(amount,0), IFNULL(amount,0) * -1) as amount
 FROM report
4
Shashank Singh

あなたもこれを試すことができます

 Select id , IF(type=='p', IFNULL(amount,0), IFNULL(amount,0) * -1) as amount from table
2
Basant Rules