I have got 250,000 records and one sheet and 240,000 records in another.

Both the sheets have same variables (column titles). One of them is "Unique ID". Other columns are "Body Weight", Height, Salary.

In 2nd sheet, most of the records come from sheet 1, but some records are lost and some new records are added.

What I have to do is to find all the common records, and put them into a third sheet. Also I have to copy some of the other columns as well say "body weight" and "Salary" from both the sheets. I have to calculate "difference in Body Weight" and "difference in Salary" and put them in the third sheet. Then I have to make different segments for these differences. So if the difference of Body Weight lies between 0 to 5 lbs then segment 1, between 5 to 10 then segment 2 and so on.

Now if I take each record from first sheet, and try to find a match in 2nd sheet, it will take a lot of time as it will do 250,000 searches.
I was wondering if something SQL like is possible here where in you can get all the common records in 1 step.

Thanks