जवाबों:
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)
मतलब है जब राशि शून्य वापसी राशि नहीं है तो वापसी 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;
सबसे सरल तरीका एक IF () का उपयोग करना है । हाँ मैसकल आपको सशर्त तर्क करने की अनुमति देता है। IF फंक्शन में 3 Params CONDITION, TRUE OUTCOME, FALSE OUTCOME लगते हैं।
तो तर्क है
if report.type = 'p'
amount = amount
else
amount = -1*amount
एसक्यूएल
SELECT
id, IF(report.type = 'P', abs(amount), -1*abs(amount)) as amount
FROM report
आप एब्स को छोड़ सकते हैं () अगर सभी नहीं हैं तो केवल वी