I started by googling, and found this article which talks about mutex tables.

I have a table with ~14 million records. If I want to add more data in the same format, is there a way to ensure the record I want to insert does not already exist without using a pair of queries (ie, one query to check and one to insert is the result set is empty)?

Does a unique constraint on a field guarantee the insert will fail if it's already there?

It seems that with merely a constraint, when I issue the insert via php, the script croaks.

link|improve this question

feedback

6 Answers

up vote 80 down vote accepted

use INSERT IGNORE INTO table

see http://bogdan.org.ua/2007/10/18/mysql-insert-if-not-exists-syntax.html

there's also INSERT … ON DUPLICATE KEY UPDATE syntax, you can find explanations on dev.mysql.com

link|improve this answer
that looks exactly like what i wanted to find – warren Sep 1 '09 at 9:12
and can I combine that with "delayed" to speed the script up? – warren Sep 1 '09 at 9:18
3  
yes, insert delayed might speed up things for you. try it out – knittl Sep 1 '09 at 9:27
update - I did an insert ignore delay and the php script finishes much faster by offloading all of the work onto mysql; for my current purposes, this is perfect; thanks – warren Sep 1 '09 at 14:43
3  
Exactly what I was looking for. +1. Landed here from Google. – Amarghosh Jan 18 '10 at 9:49
show 4 more comments
feedback

Also i'm using

INSERT INTO `table` (value1, value2) 
SELECT 'stuff for value1', 'stuff for value2' FROM `table` 
WHERE NOT EXISTS (SELECT * FROM `table` 
                  WHERE value1='stuff for value1' AND value2='stuff for value2') 
LIMIT 1
link|improve this answer
can you give some more info on how to use this? – Alex V May 15 at 19:02
feedback

on duplicate key update, or insert ignore can be viable solutions with MySQL.

link|improve this answer
feedback

Any simple constraint should do the job, if an exception is acceptable. Examples :

  • primary key if not surrogate
  • unique constraint on a column
  • multi-column unique constraint

Sorry is this seems deceptively simple. I know it looks bad confronted to the link you share with us. ;-(

But I neverleless give this answer, because it seem to fill your need. (If not, it may trigger your updating your requirements, which would be "a Good Thing"(TM) also).

Edited: If an insert would break the database unique constraint, an exception is throw at the database level, relayed by the driver. It will certainly stop your script, with a failure. It must be possible in PHP to adress that case ...

link|improve this answer
i added a clarification to the question - does your answer still apply? – warren Sep 1 '09 at 9:12
I believe it does. A unique constraint will cause the failure of incorrect inserts. Note : you have to deal with this failure in your code, but this is quite standard. – KLE Sep 1 '09 at 16:10
for now I'm going to stick with the solution I accepted - but will further look into handling INSERT failures etc as the app grows – warren Sep 7 '09 at 6:47
1  
INSERT IGNORE basically changes all errors into warnings so that your script is not interrupted. You can then view any warnings with the command SHOW WARNINGS. And another important note: UNIQUE constraints don't work with NULL values, ie. row1 (1, NULL) and row2 (1, NULL) will both get inserted (unless another constraint such as a primary key is broken). Unfortunate. – Simon Aug 24 '11 at 3:51
feedback

Here is a PHP function that will insert a row only if all the specified columns values don't already exist in the table.

If one of the columns differ, the row will be added.

If the table is empty, the row will be added.

If a row exists where all the specified columns have the specified values, the row won't be added.

function insert_unique($table, $vars)
{
  if (count($vars))
  {
    $table = mysql_real_escape_string($table);
    $vars = array_map('mysql_real_escape_string', $vars);

    $req = "INSERT INTO `$table` (`". join('`, `', array_keys($vars)) ."`) ";
    $req .= "SELECT '". join("', '", $vars) ."' FROM DUAL ";
    $req .= "WHERE NOT EXISTS (SELECT 1 FROM `$table` WHERE ";

    foreach ($vars AS $col => $val)
      $req .= "`$col`='$val' AND ";

    $req = substr($req, 0, -5) . ") LIMIT 1";

    $res = mysql_query($req) OR die();
    return mysql_insert_id();
  }

  return False;
}

Example usage :

<?php
insert_unique('mytable', array(
  'mycolumn1' = 'myvalue1',
  'mycolumn2' = 'myvalue2',
  'mycolumn3' = 'myvalue3'
  )
);
?>
link|improve this answer
Pretty expensive if you have a huge load of insertions. – Эџad Дьdulяңмaи Mar 11 at 2:41
true, but efficient if you need to add specific checkups – Charles Forest Apr 11 at 19:44
feedback

Replace might work for you.

link|improve this answer
1  
thanks for the idea - i'd prefer to not replace 14 million records (or how many it grows to) when adding new data sources :) – warren Sep 1 '09 at 9:11
2  
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.