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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T17:37:57+00:00 2026-05-15T17:37:57+00:00

I have a table products and table sizes. Each product can have multiple sizes.

  • 0

I have a table products and table sizes. Each product can have multiple sizes. How can I design my database in order to not have repeated entries of the same product?

  • 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-15T17:37:58+00:00Added an answer on May 15, 2026 at 5:37 pm

    The typical approach to a many-many relationship is to have a mapping table called Product_Size that contains the Primary Keys of each table.

    create table Product (
        id uniqueidentifier not null,
        name varchar(255),
        primary key (id))
    
    create table Size (
        id int,
        name varchar(255),
        primary key (id))
    
    create table Product_Size (
        productId uniqueidentifier,
        sizeId int,
        primary key (productId, sizeId),
        foreign key (productId) references Product(id),
        foreign key (sizeId) references Size(id))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a database with these tables: products,colors,sizes Each product(t-shirts,jeans etc) can have multiple
I have a products table which contains information about products. Each products can have
I have a database design issue. My project is about products and retailers. Product
Each product in my database can have at least three and sometimes four or
I have a table of products sales that may look as follows: product |
I have a table called Products in my database. It has a couple of
Hello i have a products table that contains normal products and configurable product It
I have two arrays of attributes that describe products in the database: $sizes =
I do not have much experience in table design. My goal is to create
We have a table that has a product record on each row. Each product

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.