SELECT id, amount FROM report
ฉันต้องการamount
ที่จะเป็นamount
ถ้าreport.type='P'
และถ้า-amount
report.type='N'
ฉันจะเพิ่มสิ่งนี้ลงในข้อความค้นหาด้านบนได้อย่างไร
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
นอกจากนี้คุณสามารถจัดการเมื่อเงื่อนไขเป็นโมฆะ ในกรณีที่มีค่าเป็นศูนย์:
SELECT id,
IF(type = 'P', IFNULL(amount,0), IFNULL(amount,0) * -1) as amount
FROM report
ส่วนIFNULL(amount,0)
วิธีการเมื่อปริมาณไม่ได้เป็นจำนวนเงินผลตอบแทน null อื่น return 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;
select
id,
case
when report_type = 'P'
then amount
when report_type = 'N'
then -amount
else null
end
from table
ส่วนใหญ่วิธีที่ง่ายที่สุดคือการใช้IF () ใช่ Mysql อนุญาตให้คุณใช้ตรรกะตามเงื่อนไข ถ้าฟังก์ชั่นใช้เวลา 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
คุณสามารถข้าม 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