Antworten:
SELECT id,
IF(type = 'P', amount, amount * -1) as amount
FROM report
Siehe http://dev.mysql.com/doc/refman/5.0/en/control-flow-functions.html .
Darüber hinaus können Sie behandeln, wenn die Bedingung null ist. Im Falle eines Nullbetrags:
SELECT id,
IF(type = 'P', IFNULL(amount,0), IFNULL(amount,0) * -1) as amount
FROM report
Der Teil IFNULL(amount,0)
bedeutet, wenn der Betrag nicht Null ist, Rückgabebetrag, sonst Rückgabe 0 .
sql/item_cmpfunc.h 722: Item_func_ifnull(Item *a, Item *b) :Item_func_coalesce(a,b) {}
IF
Aussage, was ist los?
Verwenden Sie eine case
Anweisung:
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
. Der Typ wird nicht berücksichtigt, wenn er nicht 'P' ist.
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;
Am einfachsten ist es, ein IF () zu verwenden . Ja, mit MySQL können Sie bedingte Logik ausführen. Die IF-Funktion benötigt 3 Parameter. ZUSTAND, WAHRES ERGEBNIS, FALSCHES ERGEBNIS.
Logik ist also
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
Sie können abs () überspringen, wenn alle Nein nur + ve sind
Sie können dies auch versuchen
SELECT id , IF(type='p', IFNULL(amount,0), IFNULL(amount,0) * -1) as amount FROM table