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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T15:30:49+00:00 2026-05-13T15:30:49+00:00

I have a table with 3 columns – id (pk), pageId (fk), name. I

  • 0

I have a table with 3 columns – id (pk), pageId (fk), name. I have a php script which dumps about 5000 records into the table, with about half being duplicates, with same pageId and name. Combination of pageId and name should be unique. What is the best way to prevent duplicates being saved to the table as I loop through the script in php?

  • 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-13T15:30:50+00:00Added an answer on May 13, 2026 at 3:30 pm

    First step would be to set a unique key on the table:

    ALTER TABLE thetable ADD UNIQUE INDEX(pageid, name);
    

    Then you have to decide what you want to do when there’s a duplicate. Should you:

    1. ignore it?

      INSERT IGNORE INTO thetable (pageid, name) VALUES (1, "foo"), (1, "foo");
      
    2. Overwrite the previously entered record?

      INSERT INTO thetable (pageid, name, somefield)
      VALUES (1, "foo", "first")
      ON DUPLICATE KEY UPDATE (somefield = 'first')
      
      INSERT INTO thetable (pageid, name, somefield)
      VALUES (1, "foo", "second")
      ON DUPLICATE KEY UPDATE (somefield = 'second')
      
    3. Update some counter?

      INSERT INTO thetable (pageid, name)
      VALUES (1, "foo"), (1, "foo")
      ON DUPLICATE KEY UPDATE (pagecount = pagecount + 1)
      
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have table with 2 columns: id and name. need trigger which at change
I have a table with columns 'id', 'name', 'value', 'uniqueConst' in both databases. Now
I have table with 5 columns ------------------------------------------------------ |_id(mongo default)| link | name| street|zip |
I have table with checkboxes, which I retrieve from database : <?php $result =
I have table Players with columns: ID Name Points What is most efficient way
I have SQLite table with columns id and name. I return array of those
I have a table columns:Name,Role,Dept A person can have many roles. So while retrieving
I have a table with columns name , qty , rate . I need
I have one table with 2 columns that i essentially want to split into
Suppose I have a table with columns Name VARCHAR, Department VARCHAR, Gender VARCHAR, and

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.