Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Nested Case?
Message
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Title:
Environment versions
SQL Server:
SQL Server 2000
Miscellaneous
Thread ID:
01298189
Message ID:
01298192
Views:
19
This message has been marked as the solution to the initial question of the thread.
>Anybody know how I can do this?
>
>
>
>
>    case blocktype
>             when 1 then 'Ind: '+blockDesc
>             when 2
>                 case blockTypeChar when ' ' then 'Grp: '+blockDesc else 'Spec: '+BlockTypeChar end as mytext
>	end as blockdesc,
>
>
>
>Here is the issue. I have a block type that will be 1 or 2, if it's 2, then the BlockTypeChar will either be blank or have a S.
>
>BlockType=1 then return 'Ind' + Block Desc
>BlockType=2 and BlockTypeChar = blank return 'Grp' + BlockDesc
>BlockType=3 and BlockTypeChar = 'S' return 'Spec' + BlockDesc
>
>Thanks
 case when blocktype = 1
           then 'Ind: '+blockDesc 
      when blocktype = 2  AND blockTypeChar = ' '
           then 'Grp: '+blockDesc
      when blocktype = 2
           then 'Spec: '+BlockTypeChar end as mytext
	end as blockdesc,
Against Stupidity the Gods themselves Contend in Vain - Johann Christoph Friedrich von Schiller
The only thing normal about database guys is their tables.
Previous
Reply
Map
View

Click here to load this message in the networking platform