Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 730613
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T06:55:56+00:00 2026-05-14T06:55:56+00:00

Say I have a table with a unique positive integer field. I currently have

  • 0

Say I have a table with a unique positive integer field. I currently have rows with id’s of [1, 2, 3, 4, 5, 8, 12, 35]. Is there a insert query that I could write that would assign the id field to the lowest unique positive integer (in this case 6)? It would have to do this atomically so there isn’t the possibility of concurrent inserts wiping out each other or failing.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T06:55:56+00:00Added an answer on May 14, 2026 at 6:55 am

    I would not use this to fill up “missing” ids, but this should work:

    Insert Into t (id)
      Select Coalesce( Min(t.id) + 1, 0 )
      From t
      Left Join t As t2 On ( t2.id = t.id + 1 )
      Where t2.id Is Null
    

    Get all ids where id + 1 does not exist (Left Join), and insert Min(id)+1 or 0 if non is available.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's say I have some table T with some non-null field A . There
Say that I have a table with id unique and that i have executed
Say I have a table called xml that stores XML files in a single
Lets say I have one table called REVIEWS This table has Reviews that customers
Say I have two tables, user and comment . They have table definitions that
Say you have Accounts table where ID column is PK and TaxID+AccountNumber is unique
I have a table in my schema that has a unique constraint on two
Let's say we have a table with columns DAY and NUMERO. There can be
Say I have an Oracle PL/SQL block that inserts a record into a table
Let's say I have an Access database table that has 2 columns: one is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.