Question : Syntax Error

I am gettin an error when I try to execute the following code
Code Snippet:
1:
2:
3:
UPDATE Recipients
INNER JOIN tbl_Supcribers ON Recipients.PKID = tbl_Supcribers.PKID 
SET Recipients.DateLastUpdated = #2/17/2010#

Answer : Syntax Error

so, you are using MS SQL SERver and NOT MS Access
1:
2:
3:
4:
5:
UPDATE r 
SET r.DateLastUpdated = CONVERT(datetime, '2/17/2010', 101)
FROM  dbo.RemovedSpokeoutRecipients r
JOIN spokeout.tbl_OtherSpokeoutSupcribers s 
 ON r.PKID = s.PKID
Random Solutions  
 
programming4us programming4us