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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T10:04:45+00:00 2026-06-18T10:04:45+00:00

Sorry if this is very basic. Here is what i noticed Here are the

  • 0

Sorry if this is very basic.
Here is what i noticed
Here are the tables:

Table1                         Table2
ID     Value                 ID   Value
1      (null)                 1     0
2      2                      2     2
3      (null)                 3     3

So i used the following statement:

Select T1.ID,T1.Value,T2.value
from
Table1 T1,
Table2 T2
where 
T1.ID=T2.ID
and T1.Value<>T2.Value;

I was expecting the output to show 1,3 ID but it showed nothing not i am confused suppose i want to see all values when one table has null for other table value how can i do that.

  • 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-06-18T10:04:46+00:00Added an answer on June 18, 2026 at 10:04 am

    Well, the problem is that comparisons to NULL always result in FALSE, except for IS NULL. So the clause should be:

    where T1.ID=T2.ID and
          coalesce(T1.Value, t2.value - 1) <> coalesce(T2.Value, t1.value -1);
    

    Or something that matches the NULL values.

    By the way, you should also use proper join syntax. So, the query should look more like:

    Select T1.ID,T1.Value,T2.value
    from Table1 T1 join
         Table2 T2
         on T1.ID=T2.ID and
            ((T1.Value <> T2.Value) or
             (t1.value is not null and t2.value is null) or
             (t1.value is null and t2.value is not null)
            );
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know this may be a very basic question, sorry if it is but
Sorry if this is very basic as a question....but I can't my head around
sorry, this is not a very nice question for here, but I'm very stressed
New to Haskell so sorry if this is very basic This example is taken
Sorry for this very basic JQuery question. I created 'mytest' jquery function like this:
Sorry for this, may be this is very basic question, I have multiple small
Sorry, this is very basic, but I can't set the AnimationOption from the default
I'm sorry if this is a very basic but I couldn't find anything in
This question is very basic; but I am confused so please I am sorry
Sorry if this sounds like a very basic question, it is my first time

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.