ptheriault
IS-IT--Management
I would rather write this statement without using dynamic sql.
Shouldn't this case statement in the where clause work.
- Paul
- If at first you don't succeed, find out if the loser gets anything.
Shouldn't this case statement in the where clause work.
Code:
[COLOR=blue]declare[/color] @sql [COLOR=blue]varchar[/color](200)
,@where [COLOR=blue]varchar[/color](200)
,@val [COLOR=blue]char[/color](3)
[COLOR=blue]select[/color] @val = [COLOR=red]'med'[/color]
[COLOR=blue]select[/color] @sql = [COLOR=red]'select top 1 * from policy_insuredClaims_IC'[/color]
[COLOR=blue]if[/color] @val = [COLOR=red]'med'[/color]
[COLOR=blue]BEGIN[/color]
[COLOR=blue]SELECT[/color] @where = [COLOR=red]' WHERE IC_claimType = 5'[/color]
[COLOR=blue]END[/color]
[COLOR=blue]ELSE[/color]
[COLOR=blue]BEGIN[/color]
[COLOR=blue]SELECT[/color] @where = [COLOR=red]' WHERE IC_claimType <> 5'[/color]
[COLOR=blue]END[/color]
[COLOR=blue]exec[/color] (@sql+@where)
[COLOR=blue]select[/color] top 1 * [COLOR=blue]from[/color] policy_insuredClaims_IC
[COLOR=blue]WHERE[/color] IC_ClaimType = ([COLOR=blue]CASE[/color] [COLOR=blue]WHEN[/color] @val=[COLOR=red]'med'[/color]
[COLOR=blue]THEN[/color] 5
[COLOR=blue]ELSE[/color] <> 5
[COLOR=blue]END[/color])
- Paul

- If at first you don't succeed, find out if the loser gets anything.