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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T15:14:35+00:00 2026-06-05T15:14:35+00:00

I am trying to find a way to increment a second primary key column

  • 0

I am trying to find a way to increment a second primary key column in a table automatically when a new entry is added for the first primary key column. I suppose an example would be best here so here goes.

Suppose I have a table:

CREATE TABLE T
(
     SecNum INT NOT NULL,
     EntryID INT NOT NULL,
     Value FLOAT,
) CONSTRAINT [PK_T] PRIMARY KEY CLUSTERED 
(
    [SecNum] ASC,
    [EntryID] ASC
)

I would run the following statement:

INSERT INTO T (SecNum, Value) VALUES (0, 10)

My table should look like:

SECNUM | ENTRYID | VALUE
-------------------------
   0         0       10

I would run the following statement:

INSERT INTO T (SecNum, Value) VALUES (0, 10)

My table should look like:

SECNUM | ENTRYID | VALUE
-------------------------
   0         0       10
   0         1       10

I would run the following statement:

INSERT INTO T (SecNum, Value) VALUES (1, 20)

My table should look like:

SECNUM | ENTRYID | VALUE
-------------------------
   0         0       10
   0         1       10
   1         0       20
  • 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-06-05T15:14:36+00:00Added an answer on June 5, 2026 at 3:14 pm

    This is possible using an INSTEAD OF trigger:

    CREATE TRIGGER TriggerName
    ON T
    INSTEAD OF INSERT
    AS
        -- THIS TOP BIT IS OPTIONAL, IT WILL ALLOW ENTRY ID TO BE OVERRIDDEN IF 
        -- IT IS SUPPLIED TO THE INSERT AND WILL NOT VIOLATE THE PRIMARY KEY
        IF NOT EXISTS 
            (   SELECT  1
                FROM    T
                        INNER JOIN inserted i
                            ON i.SecNum = T.secNum
                            AND i.EntryID = T.EntryID
                UNION
                SELECT  1
                FROM    inserted
                WHERE   EntryID IS NULL
            )
            BEGIN
                INSERT T (SecNum, EntryID, Value)
                SELECT  SecNum, EntryID, Value
                FROM    inserted
            END
        ELSE
        -- IF OVERRIDE ABILITY IS NOT REQUIRED JUST USE THE BELOW INSERT
            BEGIN
                INSERT T (SecNum, EntryID, Value)
                SELECT  i.SecNum, COALESCE(LastID, 0), i.Value
                FROM    inserted I
                        LEFT JOIN 
                        (   SELECT  SecNum, MAX(T.EntryID) + 1 [LastID]
                            FROM    T
                            GROUP BY SecNum
                        ) T
                            ON T.SecNum = i.SecNum
    
            END
    

    Example here

    HOWEVER this is not very elegant. It could be worth asking is it really necessary? Could you get away with using a surrogate primary key, and use ROW_NUMBER() to create Entry ID’s on the fly?

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

Sidebar

Related Questions

I am trying to find some way to relate column types across the the
Trying to find a way to remove blank pages from a document I wrote
Trying to find a way to send a POST HTTPS request from Python to
I am trying to find a way to reverse a string, I've seen alternatives
I am trying to find a way to prevent the keyboard from appearing when
I'm trying to find a way to my Window 7 machine to recognize the
I'm trying to find the way to do paid memberships in a Drupal site,
I'm trying to find a way to find out what file and line number
I am trying to find a way to prevent or highjack didSelectRowAtIndexPath: . When
I'm trying to find a way to replace spaces and double quotes with pipes

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.