Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Using CASE WHEN in SQL Select
Message
 
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Environment versions
SQL Server:
SQL Server 2005
Miscellaneous
Thread ID:
01520963
Message ID:
01520974
Views:
74
This message has been marked as the solution to the initial question of the thread.
>Hi,
>
>I need to replace the following expression in the VFP SQL Select to SQL Server compatibly:
>
>
>IIF( MYTABLE.LOG_FLD, 0, 2 ) AS NEWFLDNAME
>
>
>I understand that IIF() is replaced with CASE WHEN ... THEN.. ELSE ... END. But the values after THEN and ELSE are expected to be True or False. How do I apply it to the expression above? TIA.
CASE when MyTable.Log_Fld = 1 THEN 0 ELSE 2 END as NewFldName
Using bit field it's either 1/0 or 'true'/'false'
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform