Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How do I...
Message
From
07/11/2000 12:19:06
 
 
To
06/11/2000 16:59:50
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
Miscellaneous
Thread ID:
00438565
Message ID:
00438856
Views:
8
>>In VFP, if I have a logical field, I can do something like this:
>>
>>select iID, iif(lLogical, 'Open', 'Closed') from sometable
>>
>>This will return the word Open or Closed depending on the value of lLogical.
>>
>>Since SQL Server does not have an IIF function, how do I do the same thing using Transact SQL?
>
>Assuming a bit field (or numeric) where 1 = True and 0 = False:
>
select iID, mylogical =
>   case
>   when llogical = 0 then 'Closed'
>   else 'Open'
>   end
>from sometable
This works fine in Query Manager but does not work in a remote view. What I am going to do is create a SQL view that contains the PK and the result of the case. Then link that view into my VFP remote view to pull in the text.

Does anybody else have a better solution?
Thanks,
Dan Jurden
djurden@outlook.com
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform