Risposte:
SELECT id,
IF(type = 'P', amount, amount * -1) as amount
FROM report
Vedi http://dev.mysql.com/doc/refman/5.0/en/control-flow-functions.html .
Inoltre, è possibile gestire quando la condizione è nulla. Nel caso di un importo nullo:
SELECT id,
IF(type = 'P', IFNULL(amount,0), IFNULL(amount,0) * -1) as amount
FROM report
La parte IFNULL(amount,0)
indica quando l'importo non è un valore nullo, altrimenti restituisce 0 .
sql/item_cmpfunc.h 722: Item_func_ifnull(Item *a, Item *b) :Item_func_coalesce(a,b) {}
IF
dichiarazione, cosa c'è che non va?
Usa una case
dichiarazione:
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
. non considererà il tipo se non è "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
Il modo più semplice è usare un IF () . Sì, Mysql ti consente di eseguire la logica condizionale. La funzione IF accetta 3 parametri CONDITION, TRUE OUTCOME, FALSE OUTCOME.
Quindi la logica è
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
Puoi saltare abs () se tutti i no sono + solo ve
Puoi provare anche questo
SELECT id , IF(type='p', IFNULL(amount,0), IFNULL(amount,0) * -1) as amount FROM table