Nov 11, 2004 #1 mjonson Technical User Mar 9, 2004 128 GB hi, i want to update the field 'dateassess' in table 'tbl_risk' with the value 01/10/2004 where 'tbl_risk'.'siteid' = 2 UPDATE tbl_risk.dateassess = '01/10/2004' WHERE (tbl_risk.siteid) = 2; can you tell me where i am goin wrong?
hi, i want to update the field 'dateassess' in table 'tbl_risk' with the value 01/10/2004 where 'tbl_risk'.'siteid' = 2 UPDATE tbl_risk.dateassess = '01/10/2004' WHERE (tbl_risk.siteid) = 2; can you tell me where i am goin wrong?
Nov 11, 2004 #2 Golom Programmer Sep 1, 2003 5,595 CA You need Code: UPDATE tbl_risk SET tbl_risk.dateassess = #01/10/2004# WHERE (tbl_risk.siteid) = 2; Assuming that "dateassess" is a datetime field type. If it is a text field then leave the quotes as you had them. Upvote 0 Downvote
You need Code: UPDATE tbl_risk SET tbl_risk.dateassess = #01/10/2004# WHERE (tbl_risk.siteid) = 2; Assuming that "dateassess" is a datetime field type. If it is a text field then leave the quotes as you had them.
Nov 11, 2004 #3 mordja Programmer Apr 27, 2004 294 GB mjonson, UPDATE tbl_risk SET dateassess = #01/10/2004# WHERE (tbl_risk.siteid) = 2; MOrdja Upvote 0 Downvote
Nov 11, 2004 Thread starter #4 mjonson Technical User Mar 9, 2004 128 GB thanks v much Upvote 0 Downvote