Column fieldid is a concatentation of EmpId and Reason. Sometimes, due to improperly written code logic, it so happens that the concatenation does not happen properly, and it uses a different EmpId than the one belonging to the current record.
How do I find out such errant records?
I have tried this, but needless to stay, its stupid.
SELECT * FROM Table WHERE fieldid IN (SELECT Empid + Reason FROM EmployeeAttendance)
I am using SQL SERVER 2008. Empid, Reason and fieldid are varchars.
Thanks.
SELECT * FROM Table WHERE fieldid <> Empid + Reason OR fieldid IS NULL. Replace+with||for Oracle and MySQL. – ypercube Nov 29 '12 at 13:48