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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T21:17:51+00:00 2026-05-25T21:17:51+00:00

I have two tables: First —— id name Second —— id name And another

  • 0

I have two tables:

First
------
id
name

Second
------
id
name

And another table connecting the first two:

Third
------
first_id
second_id

The third table is there only to resolve the M:N issue. Should it have its own ID?

  • 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-25T21:17:52+00:00Added an answer on May 25, 2026 at 9:17 pm

    If the table only contains the two foreign keys, there is no reason to have an additional key. You won’t be using it in any query.

    When you join the tables using the connection table, you are making a join against one foreign key at a time, not against both foreign keys at once, so there is no use for another key in the connection table. Example:

    select t1.name, t2.name
    from First t1
    inner join Third t3 on t3.first_id = t1.id -- one foreign key
    inner join Second t2 on t2.id = t3.second_id -- the other foreign key
    

    Just make a primary key combining the two foreign keys.

     PRIMARY KEY (first_id, second_id)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two tables with FIRST and SECOND id. <TABLE ID=FIRST> <TR> <TD></TD> <TD></TD>
I have two tables The first with only 5 rows The second with 800
I have two tables, the first table has the product and the second table
I have two tables. First table have columns: price, code_one Second table has: code_one,
I have two tables, first table structure (data) : -id -name -title -mail -source_id
We have two tables. The first contains a name (varchar) field. The second contains
I have two tables - incoming tours(id,name) and incoming_tours_cities(id_parrent, id_city) id in first table
I have a database framework where I have two tables. The first table has
I have two tables. First contain list of used words, second keep black list
I have two tables, both with the same columns. The first table contains original

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.