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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T08:50:26+00:00 2026-06-01T08:50:26+00:00

I am new stored procedures and trying to write a procedure to duplicate user(by

  • 0

I am new stored procedures and trying to write a procedure to duplicate user(by user_id) master detail data into a new user data. Here is my table structure. I will pass a target user_id and destination user_id to the stored procedure. Could you please let me know the how to achieve this functionality? I appreciate any help.

TABLE A
----------------
a_id       int(Primary Key)  
desc       varchar(50)
user_id    int

TABLE B
-----------------
b_id       int(Primary Key)
a_id       int(Foreign Key)
detail     varchar(100)

CREATE PROCEDURE [duplicate_user_data] 
    @old_user_id int,
    @new_user_id int
AS
BEGIN
    INSERT INTO TABLEA
           ([desc]
           ,[user_id]
           )
    select desc, user_id from TABLEA where user_id = @old_user_id
END
  • 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-01T08:50:27+00:00Added an answer on June 1, 2026 at 8:50 am

    You can use a self-join to match the old and new parent ids.

    CREATE PROCEDURE [duplicate_user_data] 
        @old_user_id int,
        @new_user_id int
    AS
        INSERT INTO TableA ([desc], [user_id])
        SELECT [desc], @new_user_id
        FROM TableA
        WHERE [user_id] = @old_user_id
    
        INSERT INTO TableB ([a_id], [detail])
        SELECT NewTableA.[a_id], TableB.[detail]
        FROM TableA AS NewTableA
        CROSS JOIN TableA AS OldTableA
        JOIN TableB ON TableB.[a_id] = OldTableA.[a_id]
        WHERE NewTableA.[user_id] = @new_user_id
        AND OldTableA.[user_id] = @old_user_id
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here is a simplified version of a stored procedure I am trying to write
I'm trying to write a stored procedure that will create a new FILEGROUP based
I'm new to stored procedures and trying to add a composite primary key to
I'm trying to write a stored procedure in SQL Server that will eliminate some
I am new to oracle so not sure about how to write stored procedure
I have a stored procedure that returns a list. Now I'm trying to write
I'm trying to write two types of stored procedures in PostgreSQL. From what I
I'm trying to write a stored procedure to select employees who have birthdays that
I am trying to modify a stored procedure I wrote to pull data from
I am very new to stored procedures. I am trying to make a stored

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.