Respuestas:
SELECT id,
IF(type = 'P', amount, amount * -1) as amount
FROM report
Ver http://dev.mysql.com/doc/refman/5.0/en/control-flow-functions.html .
Además, puede manejar cuando la condición es nula. En el caso de una cantidad nula:
SELECT id,
IF(type = 'P', IFNULL(amount,0), IFNULL(amount,0) * -1) as amount
FROM report
La parte IFNULL(amount,0)
significa que cuando la cantidad no es nula, la cantidad devuelta, de lo contrario, devuelve 0 .
sql/item_cmpfunc.h 722: Item_func_ifnull(Item *a, Item *b) :Item_func_coalesce(a,b) {}
IF
declaración, ¿qué pasa?
Use una case
declaración:
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
. no considerará el tipo si no es '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;
La forma más simple es usar un IF () . Sí Mysql te permite hacer lógica condicional. La función IF toma 3 parámetros CONDICIÓN, VERDADERO RESULTADO, FALSO RESULTADO.
Entonces la lógica es
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
Puede omitir abs () si todos los no son solo + ve
Puedes probar esto también
SELECT id , IF(type='p', IFNULL(amount,0), IFNULL(amount,0) * -1) as amount FROM table