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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T17:28:02+00:00 2026-06-07T17:28:02+00:00

I have one table that has fields like ID ProductID CategoryID and lot of

  • 0

I have one table that has fields like

ID   ProductID  CategoryID and lot of columns......

1    1          1
2    1          2
3    2          1
4    2          2
5    2          3

I want to insert all the records in this table to two separate tables that have a structure like

ID    ProductID   (Skip CategoryID column)....
1      1
2      2

And

ID  ProductID  CategoryID

1    1          1
2    1          1
3    2          2
4    2          2
5    2          2

I can easily do this using code but i want to use pure SQL.

Normally i can insert it like

Insert into Table1 select * from Table2

But in this case after for every row there are multiple insert.

Any idea in this regard is appreciable.

  • 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-07T17:28:04+00:00Added an answer on June 7, 2026 at 5:28 pm

    If I understand you correctly, your issue is that when you select from the first table into the second table you are getting multiple rows for each product. To get round this you can do something like :

    INSERT INTO TABLE2 
    SELECT DISTINCT 
        ProductID
        , etc. etc. -- Other columns as required
    FROM
        TABLE1
    

    and then to inset into the third table would just require:

    INSERT INTO TABLE3
    SELECT DISTINCT 
        ProductID
        , CategoryID
    FROM
        TABLE1
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have one table that has two fields - ID1 and ID2 ID1 can
I have one table that has sales records and another table that has additional
I have a table that has two datetime columns (one for start time and
Screenshot mockup: http://tinypic.com/r/y2qex/5 Problem: I have a table that has 53 columns; one for
Suppose I have a table that has three integer fields and one string field
I have a table that has three fields field_one field_two field_three I'd like to
I have one table that has 2 fields one( container_id ) for numeric type
I have a database table that has a structure like the one shown below:
Lets say I have one table called REVIEWS This table has Reviews that customers
I have a table that has no primary key, and one cannot be created

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.