Sequence Numbers

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jferrara
    New Member
    • Sep 2006
    • 2

    #1

    Sequence Numbers

    How do I create a unique id (sequence number) on an existing table via a query.
  • MMcCarthy
    Recognized Expert MVP
    • Aug 2006
    • 14387

    #2
    If the unique Id is an autonumber it will be created automatically. If not use something like the following:

    Max([ID]) + 1
    Originally posted by jferrara
    How do I create a unique id (sequence number) on an existing table via a query.

    Comment

    Working...