Help....
I have what I thought was a very simple update query - take one field in a table and move it to another field in the same table, under certain conditions. It returns the correct number of records, but the field is blank.
Move LastReviewDate to AnnualReview if LastReviewType = "A"
Here is the SQL:
UPDATE tblPerformanceMgmt SET tblPerformanceMgmt.AnnualReview = [tblPerformanceMgmt].[LastReviewDate]
WHERE (((tblPerformanceMgmt.LastReviewType)="A"));
What am I doing wrong???
I have what I thought was a very simple update query - take one field in a table and move it to another field in the same table, under certain conditions. It returns the correct number of records, but the field is blank.
Move LastReviewDate to AnnualReview if LastReviewType = "A"
Here is the SQL:
UPDATE tblPerformanceMgmt SET tblPerformanceMgmt.AnnualReview = [tblPerformanceMgmt].[LastReviewDate]
WHERE (((tblPerformanceMgmt.LastReviewType)="A"));
What am I doing wrong???