Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
IIF statement
Message
 
 
To
24/09/2001 17:43:47
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Title:
Miscellaneous
Thread ID:
00560189
Message ID:
00560279
Views:
22
>I am not sure if this would work inside of SELECT statement.
>What I am trying to do is:
>
>SELECT FROM myTable.*, IIF(myTable.GoodBad, "Good", "Bad") as MyExp
>
>I need to add few calculated fields to my query.

Yes it will work in select
SELECT *,  CASE WHEN myTable.GoodBad=1 THEN  'Good' ELSE 'Bad' END as MyExp
    FROM mytable 
--sb--
Previous
Reply
Map
View

Click here to load this message in the networking platform