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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T13:31:43+00:00 2026-05-27T13:31:43+00:00

I have a many to many relation between a table product and a table

  • 0

I have a many to many relation between a table product and a table order, the link table is ProductInOrder.
I want to make a stored procedure with a list of product ids as inputs and what it would do is create a new order and add a new record to the link table for each product.

I have now achieved this using a client initiated transaction, then calling a sp to create a new order, then a loop in the client to call a sp to create each record in the link table.
But there must be a way to do this in sql.

Any ideas?

Best

  • 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-27T13:31:44+00:00Added an answer on May 27, 2026 at 1:31 pm

    What you want is something like this (for MSSQL, at least):

    declare @Sql varchar(max) = '
    insert into ProductInOrder (OrderID, ProductID)
    select
        ' + @OrderID + ',
        ProductID
    from
        Product
    where
        ProductID in (' + @Products + ')'
    
    sp_executesql(@Sql)
    

    Pass @Products in as a comma-delimited string of integers, e.g.-'1,2,3,15,100'.

    To load up a temp table in C#, you’d do this (using a SqlCommand named comm):

    comm.CommandText = "create table #ProductList (ProductID int)";
    comm.ExecuteNonQuery();
    comm.CommandText = "insert into #ProductList (ProductID) values (@ProductID)";
    foreach(int product in products)
    {
        comm.Parameters.Clear();
        comm.Parameters.AddWithValue("@ProductID", product);
        comm.ExecuteNonQuery();
    }
    comm.Parameters.Clear();
    comm.Parameters.AddWithValue("@OrderID", orderId);
    comm.CommandText = "insert into ProductInOrder (OrderID, ProductID) " +
        "select @OrderID, p.ProductID from Product p inner join #ProductList pl on " +
             "p.ProductID = pl.ProductID";
    comm.ExecuteNonQuery();
    comm.CommandText = "drop table #ProductList";
    comm.ExecuteNonQuery();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a one-to-many relation between Parent and Child table. In the parent object
I have many items inside a list control. I want each item to have
I have database relation as follows between question table and Hardware detail table .
I have 2 tables with a relation between them: Users table: user_id, Blogs table:
I am learning django admin, i have to models with a one-to-many relation between
I have this "new" table in my database: event_comment_oauth_service which is an many-to-many relation
I have many-2-many relation between Property and Feature. I have to extract results from
when i have a many-to.many relation with nhibernate and let nhibernate generate my db
I have 2 tables having many to many relation and hence there is junction
I have a question about Criteria method, one-to-many relation to the database, 'one' is

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.