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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T13:11:29+00:00 2026-05-28T13:11:29+00:00

Suppose I have two table. First table’s primary key is the foreign key for

  • 0

Suppose I have two table. First table’s primary key is the foreign key for another table.

Table Member has its primary key as the foreign key in Member_detail.

So when I insert a row in Member table using a Stored Procedure, I need to get the primary key value to add to the Member_detail table.

One way I was using is :

SELECT Max(MemberID) 
FROM Member

Then passing this Memberid to my Member_detail table, but on the following post, I read that the Max function is not recommended and that I should use SCOPE_IDENTITY, but I don’t know how to use of it.

Can anyone give me some example?

  • 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-28T13:11:30+00:00Added an answer on May 28, 2026 at 1:11 pm

    SCOPE_IDENTITY returns the last identity value inserted into an identity column in the same scope.

    Given you have 2 tables:

    Member: id int (primaryKey), name varchar
    
    Member_Detail: id int (primaryKey), pk int (foreignKey), name varchar
    

    You can do this:

    DECLARE @MemberId int
    
    INSERT INTO Member (name) VALUES ('hello');
    
    SET @MemberId = SCOPE_IDENTITY()
    
    INSERT INTO Member_Detail (pk, name) VALUES (@MemberId, 'hello again')
    

    MSDN Reference:

    SCOPE_IDENTITY (Transact-SQL)

    Returns the last identity value inserted into an identity column in the same scope. A scope is a module: a stored procedure, trigger, function, or batch. Therefore, two statements are in the same scope if they are in the same stored procedure, function, or batch.

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

Sidebar

Related Questions

Suppose I have two tables that are linked (one has a foreign key to
Suppose I have two columns in a table that represents a graph, the first
Suppose I have the following table definition: CREATE TABLE x (i serial primary key,
Suppose I have a database table with two fields, foo and bar. Neither of
Suppose I have a tags table with two columns: tagid and contentid . Each
Suppose I have two applications written in C#. The first is a third party
I have a table Template with following columns: ID, [Text] Suppose I have two
Suppose I have two table tab1, tab2. EF will create a edmx file and
Suppose I have a database named MyDatabase which has two tables - MyTable1 and
Suppose I have two tables on a database, T 10 and T 11 ,

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.