Microsoft
Software
Hardware
Network
Question : SQL code conversion for Microsoft Access 2007
Hello: I need help to convert the standard SQL code below for a MS Access 2007 database. Thank you!
SELECT
f.Volume_in_Eaches -
decode(f.Prod_Code, c.Cannibal_Prod1_Code, Cannibal_Prod1_Vol_Ea, 0) -
decode(f.Prod_Code, c.Cannibal_Prod2_Code, Cannibal_Prod2_Vol_Ea, 0) -
decode(f.Prod_Code, c.Cannibal_Prod3_Code, Cannibal_Prod3_Vol_Ea, 0) -
decode(f.Prod_Code, c.Cannibal_Prod4_Code, Cannibal_Prod4_Vol_Ea, 0) -
decode(f.Prod_Code, c.Cannibal_Prod5_Code, Cannibal_Prod5_Vol_Ea, 0) as NetVolume
FROM
tblForecast f
left outer join tblCannibal c
on
f.Prod_Year = c.Prod_Year and
f.Proc_Code = c.Prod_Code and
f.Reg_Code = c.Reg_Code;
Answer : SQL code conversion for Microsoft Access 2007
Decode is similar to IIF:
IIF(Expression to evaluate, Truepart, Falsepart)
You can also nest IIFs:
IIF("Something", DoThis, IIF("Somethingelse", Dothis, Elsedo this))
Random Solutions
Zend_Mail without Zend framework ?
Attach txt file with sendmail
Installing 'Compatibility Files' in Vista and Windows 7
How do copy only active window to clipboard in Windows XP?
How to sendmessage to parent pretranslatemessage?
Microsoft Exchange account does not receive external emails
Client-only rules in Outlook 2003
SQL 2005 - Create failed for database 'test'. (Microsoft.SqlServer.smo)
How to subscript and superscript on mySQL?
Form_Current or Form_Open