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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T13:27:23+00:00 2026-05-24T13:27:23+00:00

I am tasks with comparing 2 large unsorted .csv files based on column 1

  • 0

I am tasks with comparing 2 large unsorted .csv files based on column 1 and 3.
Each file contains about 200k records. For the output, I need to know which records based on column 1 and 3 exist in the first file but not the second file. The files are quoted comma separated value files. Column 3 needs to ignore case when comparing.

Example File1:

"id", "name", "email", "country"
"1233",  "jake", "jake@mailinator.com", "USA"
"2345", "alison", "Alison@mailinator.com", "Canada"
"3456", "jacob", "jacob@mailinator.com", "USA"
"5678", "natalia", "natalia@mailinator.com", "USA"

File 2

"id", "name", "email", "country"
"2345", "alison", "alison@mailinator.com", "Canada"
"3456", "jacob", "jacob@mailinator.com", "USA"
"5690", "lina", "lina@mailinator.com", "Canada" 

desired Output file

"5678", "natalia", "natalia@mailinator.com", "USA"

Code examples would be very appreciated.

  • 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-24T13:27:24+00:00Added an answer on May 24, 2026 at 1:27 pm

    Try:

    join -v 1 -i -t, -1 1 -2 1 -o 1.2 1.3 1.4 1.5  <(awk -F, '{print $1":"$3","$0}' f1.txt | sort) <(awk -F, '{print $1":"$3","$0}' f2.txt | sort)
    

    How it works:

    1) I first create a composite key column, by joining column 1 and column3:

    awk -F, '{print $1":"$3","$0}' f1.txt
    awk -F, '{print $1":"$3","$0}' f2.txt
    

    2) I sort both outputs:

    awk -F, '{print $1":"$3","$0}' f1.txt | sort 
    awk -F, '{print $1":"$3","$0}' f2.txt | sort 
    

    3) I then use the join command to join on the first column (my composite key) and output the unpairable lines coming from file 1.

    Output:

    "1233",  "jake", "jake@mailinator.com", "USA"
    "5678", "natalia", "natalia@mailinator.com", "USA"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table that contains tasks and I want to give these an
I'm going to work on comparing around 300 binary files using Scala, bytes-by-bytes, 4MB
I have an ant task that contains javac task inside. It reports about error
I have created custom build tasks in my project file to run my nUnit
I keep getting tasks that are above my skill level. How can I address this without coming accross as grossly incompetent?
We have two tasks (T1 and T2) in our vxWorks embedded system that have
I have few asynchronous tasks running and I need to wait until at least
There are some tasks, especially the ones that involve deleting folders as SU, that
If there are 3 tasks(T1,T2,t3) with priority P1 P2 P3. P1 is pended. Assume
I need to create tasks in a SharePoint Task List with c#. Can I

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.