Updating a Number field to NULL

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,

I like to know if it's possible to update a numeric field in Access and set
its value to NULL (this is possible in SQL Server)? If yes, how to do it.
Thanks in advance.

Roy
 
Sure. Run an update query:
UPDATE MyTable SET MyTable.MyField = Null;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top