I am trying to filter my query with Region.
I have some NULL values for the RegionName . Thats why I did something like this :
ISNULL(Reg.RegionName,'No region assigned') RegionName
In my stored proc I set Region as a parameter . When I execute the sp with parameter 'No region assigned' , it doesnot return any values although it returns results for all other regions .
Any help appreciated .
Thanks.