Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6388693
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T03:18:37+00:00 2026-05-25T03:18:37+00:00

I got a computed column that I need to be a bit field, here

  • 0

I got a computed column that I need to be a bit field, here an example of formula :

case when ([some_field] < [Some_Other_field]) 
then 0 
else 1 
end

The data type of computed column set using this formula is int.

What’s the best way to force the correct data type?

With a CONVERT statement on the whole case, data type is bit but it Allow Nulls

CONVERT([bit], 
        case when (([some_field] < [Some_Other_field]) 
        then 0 
        else 1 
        end,
        0)

Same thing with a CONVERT statement on the result expressions, data type is bit but it Allow Nulls

case when (([some_field] < [Some_Other_field]) 
then CONVERT([bit], (0), 0) 
else CONVERT([bit], (1), 0) 
end

Or there is a smarter way of doing this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T03:18:38+00:00Added an answer on May 25, 2026 at 3:18 am

    Wrap the computed column definition in ISNULL, with whatever you like as the second argument (provided it’s a bit, or convertible to such).

    This is one of the few places where you have to use ISNULL rather than (the generally better designed) COALESCE. SQL Server has special case logic to realise that an ISNULL with a non-null second argument represents a non-nullable result.

    E.g.:

    ISNULL(CONVERT(bit,case when ([some_field] < [Some_Other_field]) 
    then 0 
    else 1 
    end),0)
    

    This can also be used in e.g. view definitions.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm sorry, didn't know that Length is computed at construction time!! I got 200
In my sql server table, I want to add a computed column that is
Here is the case: I need to display a list of records on a
i've got following example xml: <entity id=1> <name>computer</name> <type>category</type> <entities> <entity id=2> <name>mac</name> <type>category</type>
Got a class that serializes into xml with XMLEncoder nicely with all the variables
So, I've got a query that looks something like this: SELECT id, DATE_FORMAT(CONVERT_TZ(callTime,'+0:00','-7:00'),'%b %d
I've got the following html and css In Firefox the computed font size is
I've got a simple button with a single css-style, like this: <button style=text-decoration:underline>That's a
[An earlier version of this post got absolutely no response, so, in case this
Isn't that nicely recursive? I've got a portable command prompt on my external drive,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.