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 6734057
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T10:50:38+00:00 2026-05-26T10:50:38+00:00

I am having a bit of difficulty understanding how t-sql treats null values. As

  • 0

I am having a bit of difficulty understanding how t-sql treats null values.

As a C# guy, I tend to want to do

IF(@myVar != null)...

But, this doesn’t ever appear to run my code. So I do

IF(@myVar is not null)

Whats the difference?

Second, the way addition works is unclear. Let’s say I have

declare @someCount int, @someFinalResult int

--Select that returns null
SELECT @someCount = columnName from tableName where someColumn = someValue

Then if I do

SET @someFinalResult = @someCount + 1--I seem to get NULL if I had null + something

But, if I first

declare @someCount int, @someFinalResult int
--FIRST SET DEFAULT TO 0
SET @someCount = 0

--Select that returns null
SELECT @someCount = columnName from tableName where someColumn = someValue

Now, @someCount defaults to 0, it’s not actually set equal to NULL even if the result is null. Why?

  • 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-26T10:50:38+00:00Added an answer on May 26, 2026 at 10:50 am

    When you deal with NULL in SQL Server you basically work with 3-value logic with all the implications.

    So in your example

    IF(@myVar != null) vs IF(@myVar is not null)

    It basically boils down to the question what is the difference between: @myVar = null vs @myVar is null

    @myVar = null will always evaluate to null as what you are asking is:

    is the value in @myVar equal to UNKNOWN

    As you do not know what the UNKNOWN is this question cannot by answered yes, or no so it evaluates to UNKNOWN

    e.g. 
        "is 1 = UNKNOWN" - I do not know
        "is 'a' = UNKNOWN" - I do not know 
        "is UNKNOWN = UNKNOWN" - I do not know
    

    The last one may be a bit tricky but just imagine that you have 2 boxes with apples and you do not know neither how many apples are in box1 one nor in box2 so asking:

    is count(box1) = count(box2)
    is the same as 
    is UNKNOWN = UNKNOWN"
    

    so the answer is I do not know

    the second one @myVar is null is different as it is like asking

    is the value in @myVar UNKNOWN
    

    so the difference is that you specifically ask “is it true that the value stored in the variable is UNKNOWN?”, so

        "is 1 UNKNOWN" - NO
        "is 'a' UNKNOWN" - NO
        "is UNKNOWN UNKNOWN" - YES
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm having a bit of difficulty understanding how the python __init__ ( ) function
I'm having a bit of difficulty figuring out how to use this Regular Expression
I am having a bit of difficulty with this current code I have set
I'm having a bit of difficulty coming up with the right answer to this,
I'm looking to crowd-source this, as I'm having bit of difficulty finding an industry
Having a bit of difficulty figuring out how to create a named_scope from this
I'm having a bit of difficulty using the values in a PHP array for
I’m having a bit of difficulty getting this to work – and to be
I've started using Phantom JS on Windows, but I'm having a bit of difficulty
I'm having a bit of difficulty understanding how to synchronize ArrayList's between threads in

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.