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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T16:28:10+00:00 2026-06-17T16:28:10+00:00

i have two Identical tables in my SQL database these tables consist of Item

  • 0

i have two Identical tables in my SQL database these tables consist of Item Code and QTY each.

I need to see which items in both tables that have different quantities AND the items that

don’t exist in the other table

I tried using FULL OUTER JOIN ON ITEMCODE=ITEMCODE AND QTY<>QTY

IT IS NOT WORKING

the result i am getting is something like that:

http://www.sendspace.com/file/nmb7yu

  • 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-17T16:28:11+00:00Added an answer on June 17, 2026 at 4:28 pm

    Try something like this:

    SELECT  c.Code ,
            t1.Code ,
            t1.Qty ,
            t2.Code ,
            t2.Qty
    FROM    ( SELECT    Code
              FROM      dbo.Table1
              UNION
              SELECT    Code
              FROM      dbo.Table2
            ) c
            LEFT OUTER JOIN dbo.Table1 t1 ON c.Code = t1.Code
            LEFT OUTER JOIN dbo.Table2 t2 ON c.Code = t2.Code
    WHERE   t1.Code IS NULL
            OR t2.Code IS NULL
            OR t1.Qty <> t2.Qty
    

    Since you have a test for inequality in the WHERE clause you’re implicitly only including items that are in both tables. This way you include items that are in one table, but not the other, or have the difference in quantity.

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

Sidebar

Related Questions

I have two identical SQL Server tables ( SOURCE and DESTINATION ) with lots
Let's say I have two databases with identical tables, but one database's tables contains
I have two tables TABLE1 and TABLE2 with identical structures. I need a trigger
I have two tables in two different SQL Server databases on different servers. Each
Given two MS SQL databases which are known to have identical schemas, how should
I have a LINQ-to-SQL data context in which two tables exist with different names
I have two SQL tables, each with a compound key made of three different
The following SQL generates all matching records between two tables that have identical schemas
I have two tables with identical schema in SQL Server 2008 R2. If I
I have two identical tables and need to copy rows from table to another.

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.