Auto number field in query

  • Thread starter Thread starter Guest
  • Start date Start date
How do I create a autonumber field in a make table query.

You can't.

Create the table, empty, in the Tables window, and run an Append query
to populate it.

Note that MakeTable queries are VERY rarely really necessary; in a
properly normalized database there will already be a table for each
Entity represented by your database. If you're creating a table on the
assumption that you need a new table every time you have a new set of
data to report (or export), reconsider that assumption; it's easier to
base Forms, Reports, and file exports on a Select query than it is to
change the exact same select query into a MakeTable query.

John W. Vinson[MVP]
 

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

Similar Threads


Back
Top