I have one table with multiple columns and I need to bring back via a query all records that have matching data AND a Review By > 0
IE: S_Money = Money and S_APR = APR, etc.
S_Money Money S_APR APR S_Income Income Reviewed by
50 50 7.8 7.8 40000 40000 1234
35 35 8.1 8.1 33000 33000 2332
77 76 5.6 5.6 48000 48000 4567
56 56 6.1 6.1 69000 49000 6578
44 44 5.8 5.8 51000 51000
What I expect to get back in this query would be the first two rows of information as all columns match AND those records were reviewed. Rows three and four had data that did not match and row five the data matched and no one reviewed the information.
Any help would be appreciated.
IE: S_Money = Money and S_APR = APR, etc.
S_Money Money S_APR APR S_Income Income Reviewed by
50 50 7.8 7.8 40000 40000 1234
35 35 8.1 8.1 33000 33000 2332
77 76 5.6 5.6 48000 48000 4567
56 56 6.1 6.1 69000 49000 6578
44 44 5.8 5.8 51000 51000
What I expect to get back in this query would be the first two rows of information as all columns match AND those records were reviewed. Rows three and four had data that did not match and row five the data matched and no one reviewed the information.
Any help would be appreciated.