I want to have a simple condition in my where clause, on one of the columns like:
When @PostTypeid is null then where should be PostTypeid in (4,5) and if
@PostTypeid is not null then where clause should be PostTypeId = @PostTypeId
I am trying to use case for this purpose but I think I am getting confused with the syntax. Here is what I have come up with so far:
(PostTypeid = case(@PostTypeId) when null then in (4,18) else @PostTypeId end)
The error is when I use in, I dont think that's a valid syntax. What is the correct way to do this? thanks. I Tried shifting the braces to several other places but in vain.
Thanks
(case(@PostTypeId) when null then PostTypeId in (4, 18) else PosttypeId = @PostTypeId end)and sql didnt like that at all! – iamserious Jan 12 '11 at 11:17