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

  • Home
  • SEARCH
  • 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 7026527
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T00:07:45+00:00 2026-05-28T00:07:45+00:00

I need to compare 2 columns in a table and give 3 things: Count

  • 0

I need to compare 2 columns in a table and give 3 things:

  • Count of rows checked (Total Rows that were checked)
  • Count of rows matching (Rows in which the 2 columns matched)
  • Count of rows different (Rows in which the 2 columns differed)

I’ve been able to get just rows matching using a join on itself, but I’m unsure how to get the others all at once. The importance of getting all of the information at the same time is because this is a very active table and the data changes with great frequency.

I cannot post the table schema as there is a lot of data in it that is irrelevant to this issue. The columns in question are both int(11) unsigned NOT NULL DEFAULT '0'. For purposes of this, I’ll call them mask and mask_alt.

  • 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-28T00:07:46+00:00Added an answer on May 28, 2026 at 12:07 am
    select
        count(*) as rows_checked,
        sum(col = col2) as rows_matching,
        sum(col != col2) as rows_different
    from table
    

    Note the elegant use of sum(condition).
    This works because in mysql true is 1 and false is 0. Summing these counts the number of times the condition is true. It’s much more elegant than case when condition then 1 else 0 end, which is the SQL equivalent of coding if (condition) return true else return false; instead of simply return condition;.

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

Sidebar

Related Questions

I need to compare two account number columns from two different tables to see
I need to compare two columns in a sql table. The data in one
I need to compare multiple columns from then same row in a table For
I need to compare the content of two tables, more exactly two columns (one
I have a merge statement that needs to compare on many columns. The source
I have a table of classroom names that I want to compare against several
My dataframe(m*n) has few hundreds of columns, i need to compare each column with
i am trying to pull data from one table, compare columns to a variable,
I have a table (client) with 20+ columns that is mostly historical data. Something
Once again I need some help. I'm working with a table that contains 3

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.