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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T14:49:46+00:00 2026-06-10T14:49:46+00:00

I want to keep my m:n table in sync with another mysql database table

  • 0

I want to keep my m:n table in sync with another mysql database table of another system.

Lets assume an employee can work in n departments and a department can have n employees:

Table Department(id(pk), name)

Table Employee(id(pk), name)

Table employee_department(employee_id(fk), department_id(fk))

For all other tables I used "insert into...on duplicate key" which is working great as Mysql is updating found items with new values. If I use this statement on my employee_department table its inserting duplicate values(sure because those are fks only). I thought about changing the fks to pks so that I have a composite key. But than mysql is not inserting again but not removing deleted references from the other system.

What do I need to change that the complete tables keeps in sync?

  • 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-10T14:49:48+00:00Added an answer on June 10, 2026 at 2:49 pm

    You do not have to remove current foreign keys, just add primary or unique composite key:

    ALTER TABLE `employee_department`
    ADD PRIMARY KEY (`employee_id`, `department_id`);
    

    or

    ALTER TABLE `employee_department`
    ADD UNIQUE INDEX (`employee_id`, `department_id`);
    

    However, keep in mind that you still have to manually remove the relationships that were deleted in original system that have their related records intact.

    2 reliable methods would be either to do a complete database wipe/dump or use replication

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to keep backup of my database and import it into different System?
I have a table transaction which has duplicates. i want to keep the record
I'm developping a chat application. I want to keep everything logged into a table
i want to keep my app in sync with the Server. The communication between
I want to keep a cell selected, and only change when I select another
I want to keep a table as history and replace it with an empty
I have an PARTSORDER table. I want to keep the track of last modification
I am using oracle database.I want to use duplicate rows from a table except
I need to keep a table in sync with a recursive CTE query that
I want to map a class to a table and a subclass to another

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.