Yanıtlar:
SELECT id,
IF(type = 'P', amount, amount * -1) as amount
FROM report
Bkz. Http://dev.mysql.com/doc/refman/5.0/en/control-flow-functions.html .
Ayrıca, koşul null olduğunda da işleyebilirsiniz. Geçersiz tutarda:
SELECT id,
IF(type = 'P', IFNULL(amount,0), IFNULL(amount,0) * -1) as amount
FROM report
Parça , tutar boş değer olmadığında başka bir değer 0 olduğundaIFNULL(amount,0)
anlamına gelir .
sql/item_cmpfunc.h 722: Item_func_ifnull(Item *a, Item *b) :Item_func_coalesce(a,b) {}
IF
açıklama mı arıyorsunuz, sorun nedir?
Bir case
ifade kullanı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
. 'P' değilse türü dikkate almaz.
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
En basit yol bir IF () kullanmaktır . Evet Mysql, koşullu mantık yapmanızı sağlar. EĞER işlevi 3 parametre alırsa CONDITION, TRUE OUTCOME, FALSE OUTCOME.
Yani Mantık
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
Tüm hayırlar yalnızca + ve ise abs () 'yi atlayabilirsiniz.
Bunu da deneyebilirsiniz
SELECT id , IF(type='p', IFNULL(amount,0), IFNULL(amount,0) * -1) as amount FROM table