I'm stuck on a mySQL query using ON DUPLICATE KEY UPDATE.

I'm getting the error:

mySQL Error: 1062 - Duplicate entry 'hr2461809-3' for key 'fname'

The table looks like this:

id int(10) NOT NULL default '0',   
picid int(10) unsigned NOT NULL default '0',
fname varchar(255) NOT NULL default '',  
type varchar(5) NOT NULL default '.jpg',  
path varchar(255) NOT NULL default '',    
PRIMARY KEY  (id),  
UNIQUE KEY fname (fname),  
KEY picid (propid)  
) ENGINE=MyISAM DEFAULT CHARSET=utf8;  

And the query that's breaking is this:

INSERT INTO images SET picid=732, fname='hr2461809-3', path='pictures/' ON DUPLICATE KEY UPDATE picid=732,  fname='hr2461809-3', path='pictures/' 

I'm using a very similar query elsewhere in the app with no issues. I'm not sure why this one breaks. I expected that when the UNIQUE KEY on fname gets violated, that it would simply update the row where the violation occurred?

Thanks for any help

link|improve this question

80% accept rate
Why are you using SET with an INSERT command??? – animuson May 3 '10 at 16:44
@animuson What's wrong with that? Any fields not specified will be set to their default values, or NULL (if allowed). – rjh May 3 '10 at 16:46
@rjh: What's wrong with using (picid, fname, path) VALUES (732, 'hr2461809-3', 'pictures/')? It's things like this that make languages such a mess, why can't everyone just stick to INSERT VALUES? – animuson May 3 '10 at 16:49
I did it this way since the statements are generated dynamically from an array, and therefore it's easier to set both ends of the query the same (the insert and the update). – julio May 3 '10 at 16:54
@animuson: I wasn't aware that SET was a MySQL extension to the ANSI syntax. Thanks for the heads up. – rjh May 3 '10 at 17:05
feedback

1 Answer

up vote 2 down vote accepted

I think you want ON DUPLICATE KEY IGNORE.

You're asking, in the event of a key collision, to simply re-insert the same data. Unsurprisingly this results in another key collision, as it's still a duplicate row!

ON DUPLICATE KEY IGNORE will abort the insert if the row already exists.

link|improve this answer
To further explain, ON DUPLICATE KEY UPDATE simply changes what information is being inserted with the query, so if you make it the same it will still error out. That function is there so you can make changes to it in the same query so it won't error out. – animuson May 3 '10 at 16:47
Thanks guys! I appreciate the information. – julio May 3 '10 at 16:55
feedback

Your Answer

 
or
required, but never shown

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