Scorez2000
Programmer
Here's the query I'm trying to run:
UPDATE Bathrooms SET Bathrooms.[2nd Fix Hot and Cold Water AF] = '15/06/2004' WHERE (((Bathrooms.BathroomID)=77));
BathroomID is a an INT field, and "2nd Fix Hot and Cold Water AF" is a smalldatetime field.
The query runs fine if on the database in Access2000 format, but not when the database is upped to SQL Server.
I believe this is because SQL Server uses Transact SQL which has slightly different syntax, but I cannot find any documentation on the differences.
UPDATE Bathrooms SET Bathrooms.[2nd Fix Hot and Cold Water AF] = '15/06/2004' WHERE (((Bathrooms.BathroomID)=77));
BathroomID is a an INT field, and "2nd Fix Hot and Cold Water AF" is a smalldatetime field.
The query runs fine if on the database in Access2000 format, but not when the database is upped to SQL Server.
I believe this is because SQL Server uses Transact SQL which has slightly different syntax, but I cannot find any documentation on the differences.