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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T21:12:21+00:00 2026-05-12T21:12:21+00:00

I am trying to create a many to many relationship between 2 tables. I’ve

  • 0

I am trying to create a many to many relationship between 2 tables. I’ve got 3 tables for that. It follows TOXY model.

table a: a.id (primary key)
table ab: ab.a_id (foreign key) ab.b_id (foreign key)
table b: b.id (primary key)

How should I insert the data so it will be all linked up?

Like this? "INSERT INTO a ('name') VALUES ('my name')";

then like this? "INSERT INTO b ('name') VALUES ('my name')";

but then I have to have the a.id and b.id to put it in table ab. How should I retrieve them?

i know i could do a SELECT a.id FROM a WHERE name = ‘my name’. but isnt there an easier way for this that automatically returns an id when u INSERT the row?

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

    All you need to do is store those IDs in variables to use in a query to insert into the ab table. LAST_INSERT_ID() returns the ID of the inserted rows. So, in PHP for instance:

    // Run command to insert into A, then:
    $a = mysql_query('SELECT LAST_INSERT_ID();');
    
    // Run command to insert into B, then:
    $b = mysql_query('SELECT LAST_INSERT_ID();');
    
    // Then $a and $b hold the IDs that you can use to insert into AB.
    mysql_query("INSERT INTO ab (a_id, b_id) VALUES ($a, $b);");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to create a many-many relationship between the max(id) in table1 with
I'm trying to write a route that captures the one-to-many relationship between posts and
I am trying to create an association between two tables. A student table and
I am trying to create nested routes for a project that has many boards.
I'm trying to create a table and I've tried so many times to figure
I am trying to create a table for printing purpose. As seen in many
I'm trying to create a many-to-many relationship using EF code first in my MVC
I am trying to create User, Group and Membership tables as follows. A User
I Have Database that contains 4 tables TABLE TBLCARTITEM (CART_ID, ITEM_ID, PROMOTION_ID, many more
I'm working with EF4.1 Code First and am trying to create some Many-to-Many relationship

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.