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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T22:58:13+00:00 2026-05-25T22:58:13+00:00

I think I already know the answer but… Given this statement: Insert Into Allergy

  • 0

I think I already know the answer but…

Given this statement:

Insert Into Allergy (Name, Category, Composition)
Select Name, Category, Composition
From ETVault Where Strain In (6, 2, 4)

Is it possible to get the identities that were inserted?

I understand I can break this into multiple statements and capture scope_identity() after each but that’s not what I’m asking.

  • 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-25T22:58:15+00:00Added an answer on May 25, 2026 at 10:58 pm

    The first way I thought of doing this is to use a AFTER INSERT TRIGGER on the table, capture the entire rowset inserted, and get the identities from there.

    EDIT Of course, you can do this by capturing OUTPUT (doh)

    http://msdn.microsoft.com/en-us/library/ms177564.aspx

    Here is a working sample, Since you hadn’t provided sample data, I created my own Allery and ETVault tables, so use the example in a brand new database.

    DROP TABLE Allergy
    GO
    CREATE TABLE Allergy
    (
    ID INTEGER IDENTITY (1, 1), NAME VarChar (20), Category VarChar (20), Composition VarChar (20)
    )
    GO
    DROP TABLE ETVault
    Go
    CREATE TABLE ETVault 
    (
    ID INTEGER IDENTITY (1, 1), Strain INT, NAME VarChar (20), Category VarChar (20), Composition VarChar (20)
    )
    GO
    INSERT INTO dbo.ETVault
            ( Strain, NAME, Category, Composition )
    VALUES  
    ( 1, '1',  '1',  '1'),
    ( 2, '1',  '1',  '1'),
    ( 3, '1',  '1',  '1'),
    ( 4, '1',  '1',  '1'),
    ( 5, '1',  '1',  '1'),
    ( 6, '1',  '1',  '1'),
    ( 7, '1',  '1',  '1'),
    ( 8, '1',  '1',  '1')
    
    DECLARE @CaptureTable TABLE (ID INT)
    
    
    INSERT INTO dbo.Allergy
            ( NAME, Category, Composition )
    OUTPUT INSERTED.Id INTO @CaptureTable
    SELECT dbo.ETVault.NAME, Category, Composition
    FROM dbo.ETVault
    Where Strain In (6, 2, 4)
    
    
    SELECT * FROM @CaptureTable
    

    It gives you the output

    (8 row(s) affected)
    
    (3 row(s) affected)
    ID
    -----------
    1
    2
    3
    
    (3 row(s) affected)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I think I already know the answer to this but thought I would ask
I think i already know the answer to this, but i cannot find anything
I think I might already know the answer to this one but I need
I think I already know the answer to this, but I'm currently working on
I think I may already know the answer to this, but here goes. I
I think I already know the answer to this question is No, but I
I think I already know the answer to this question because it seems, uh,
I think I already know the answer, but just to make sure. I am
I think I might already know the answer, but here goes. I want to
I think I already know the answer, but I'm going to ask the question

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.