I have a benefit enrollment app and I need to pull the most recent historical record for a given year and compare it to the most recent historical record for another given year and determine which (if any) fields changed.
I've been trying multiple solutions (some found here) that include the OVER(PARTITION... clause. Unfortunately my version of SQL (2005)/management studio doesn't appreciate what a great tool it is because as soon as it verifies my code it promptly quits.
So this is what I have:
SELECT * FROM
(SELECT empID, ssn, fname, minitial, lname, email, dob,
gender, wkPh, maritalStatus,
ROW_NUMBER() OVER (PARTITION BY empID ORDER BY lastUpdate DESC)
AS ranking
FROM empHistory WHERE (benYr = 2011))
T WHERE ranking=1
Haven't gotten as far as comparing the two rows since I don't seem to be able to grab the data for even one year.
Any ideas on what's happening or alternative/better ways to get the data I need?
EDIT: Working on getting SSMS reinstalled but in the meantime...would this reimmagined query return the same info? or would it only return data when there's more than one row for a given empID?
SELECT empID, ssn, fname, minitial, lname, email, dob, gender, wkPh, maritalStatus, benYr FROM empHistory AS a WHERE (benYr = '2011') AND (lastUpdate = (SELECT MAX(lastUpdate) AS Expr1 FROM empHistory AS b WHERE (a.empID = empID)))
Reinstalled SSMS with no effect.
However, I was running the query from within the table and I discovered that when I run the query by starting a new query it works fine - is this an expected result?