Update query - more than 1 column???

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

Guest

hi Guys,

Can you update more than one table column at a time in an update query? It
doesn;t work for me and I don;t know if I am doing something wrong or you
just can't do it??? Thanks.

ex.
UPDATE tblImportHold SET Fund = "MFS" AND Report_Quarter = "3rd" AND
Report_Year = "2004" WITH OWNERACCESS OPTION
 
Nevermind, I figured it out.

UPDATE tblImportHold SET Fund = "MFS", Report_Quarter = "3rd", Report_Year =
"2004" WITH OWNERACCESS OPTION;
 
hi Guys,

Can you update more than one table column at a time in an update query? It
doesn;t work for me and I don;t know if I am doing something wrong or you
just can't do it??? Thanks.

ex.
UPDATE tblImportHold SET Fund = "MFS" AND Report_Quarter = "3rd" AND
Report_Year = "2004" WITH OWNERACCESS OPTION

Tom Ellison
Microsoft Access MVP
Ellison Enterprises - Your One Stop IT Experts
 

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