I am using following for select statment with case. The column to which the CASE is applied has True, False and Null values. I am trying to display True for True and False for both False and Null. But it give me an error message saying

"Conversion failed when converting the varchar value 'Null' to data type bit."

This is my query:

    case
       when prog.has_post_calc_screen = ''True'' then ''True''
       when prog.has_post_calc_screen = ''False''then ''False''
       when prog.has_post_calc_screen = ''Null'' then ''False''
    End as Referal_ID,

Input which I am giving is:

 '1','ALL', 'ALL'

Can anyone help?

 Thanks
link|improve this question

33% accept rate
feedback

3 Answers

up vote 3 down vote accepted

Instead of when prog.has_post_calc_screen = ''Null'' write when prog.has_post_calc_screen IS NULL THEN ... (You might also write ELSE ... because you have already processed true and false, so the only possible value is NULL).

UPDATE You can also write just

 case
   when prog.has_post_calc_screen = true then 'True'
   else 'False'
 END ....
link|improve this answer
I can run the query with the error but the gridview(where the data is displayed) has empty cell when the value is Null but can see both True and False in records!! – userstackoverflow Apr 20 '11 at 19:56
Thank you a1ex07. The second case statement worked. Really appreciate it. – userstackoverflow Apr 20 '11 at 20:29
feedback

You cannot test for a NULL value with an =. You must use IS NULL instead, so change the one line of your CASE:

when prog.has_post_calc_screen IS NULL then ''False''
link|improve this answer
I can run the query with the error but the gridview(where the data is displayed) has empty cell when the value is Null and can see both True and False in records in the gridview!! any idea why? – userstackoverflow Apr 20 '11 at 19:59
Thanks for your reply. – userstackoverflow Apr 20 '11 at 20:38
feedback
when COALESCE(prog.has_post_calc_screen,''False'') = ''False''then ''False''
link|improve this answer
+1 beat me to it - just use COALESCE since the only case you want to change is a NULL – JNK Apr 20 '11 at 19:52
Thanks for your reply. – userstackoverflow Apr 20 '11 at 20:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.