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 864489
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T09:29:13+00:00 2026-05-15T09:29:13+00:00

I have a table that is used to store an incrementing numeric ID (of

  • 0

I have a table that is used to store an incrementing numeric ID (of type INT). It contains a single row. The ID is incremented using a query:

UPDATE TOP(1) MyTable
WITH(TABLOCKX)
SET NextID = NextID + 1

I would like to move this into a stored procedure that returns the value that was in the NextID column before it was incremented, but am unsure how to do this using OUTPUT parameters. Any help would be appreciated.

  • 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-15T09:29:14+00:00Added an answer on May 15, 2026 at 9:29 am

    for SQL Server 2005+, try:

    CREATE PROCEDURE dbo.Get_New_My_Table_ID
        @current_id INT = NULL OUTPUT    -- Declared OUTPUT parameter
    AS
    BEGIN TRANSACTION
    
    UPDATE TOP(1) MyTable WITH(TABLOCKX)
        SET NextID = NextID + 1
        OUTPUT DELETED.NextID
    
    COMMIT TRANSACTION
    
    RETURN 0
    GO
    

    the results of OUTPUT don’t need to go into an actual table, it can be a result set.

    test it out:

    declare @MyTable table (NextID int)
    INSERT INTO @MyTable VALUES (1234)
    
    
    SELECT 'BEFORE',* FROM @MyTable
    
    PRINT '------------<<<<UPDATE>>>>---------'
    UPDATE TOP(1) @MyTable
        SET NextID = NextID + 1
        OUTPUT DELETED.NextID
    PRINT '------------<<<<UPDATE>>>>---------'
    
    SELECT 'AFTER',* FROM @MyTable
    

    OUTPUT:

    (1 row(s) affected)
           NextID
    ------ -----------
    BEFORE 1234
    
    (1 row(s) affected)
    
    ------------<<<<UPDATE>>>>---------
    NextID
    -----------
    1234
    
    (1 row(s) affected)
    
    ------------<<<<UPDATE>>>>---------
          NextID
    ----- -----------
    AFTER 1235
    
    (1 row(s) affected)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table that's used to store some temporary bookkeeping stuff. It needs
I have a database staging table that is used to store data fed in
We have a table that is used for assessment-values in our tool where each
I have a huge table that is mainly used for backup and administrative purposes.
I have used TableCellRenderers on a table to repaint cells so that every alternate
I have a pretty common layout issue that I have traditionally used a table
I have table that I insert data with following query (from c# code): INSERT
I have a table that contains multiple dropdown menus for a list of profile
In my Sybase 12.0 ASE database, I have at table that contains a column
My problem is fairly simple. I have table sets that store product sets (more

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.