ACCESS QUERY

  • Thread starter Thread starter Guest
  • Start date Start date
Gabriela said:
Is there any way in Access that I can combine two columns into one

Are you wanting to simply display the two columns joined together, or are
you wanting to physically combine the two columns in the table? To display
two fields together, do something like this in a query:

SELECT ([field1] & [field2]) AS [newfieldname] FROM
...

To physically combine two columns in a table, create the new column in the
table and then run a query something like this:

UPDATE

SET [newfield]=[field1] & [field2];

Carl Rapson
 

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