Microsoft
Software
Hardware
Network
Question : sql question
I have this section in my sql script:
ISNULL(lot_loc.unit_cost, item.avg_u_cost) as [Unit Cost]
it works very well but in some cases lot_loc also = 0.0 in which case I'd also like it to pull the value from item.avg_u_cost.
How can I do this?
Answer : sql question
use this instead of the above
case when lot_loc.unit_cost is null or lot_loc.unit_cost =0 then item.avg_u_cost ELSE lot_loc.unit_cost END as as [Unit Cost]
Random Solutions
How to subscript and superscript on mySQL?
SQL 2005 - Create failed for database 'test'. (Microsoft.SqlServer.smo)
OLE Registration
Microsoft Exchange account does not receive external emails
How to sendmessage to parent pretranslatemessage?
Format an amount without the decimal point
Installing 'Compatibility Files' in Vista and Windows 7
Attach txt file with sendmail
Convert VBA to VB.Net
Excel macro to update cell information