D
dp724 via AccessMonster.com
The following works fine for a text datatype field:
CurrentDb.Execute "UPDATE MyTable SET [MyField] = '' WHERE [MyField] = '0'",
dbFailOnError
What would be the correct syntax if 'MyField' is a number datatype?
Thanks in advance.
Dave
CurrentDb.Execute "UPDATE MyTable SET [MyField] = '' WHERE [MyField] = '0'",
dbFailOnError
What would be the correct syntax if 'MyField' is a number datatype?
Thanks in advance.
Dave