Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there an easy way to INSERT an row when not exists, or to UPDATE if it exists, using one MySQL query?

share|improve this question

2 Answers

up vote 92 down vote accepted

Yes, INSERT ... ON DUPLICATE KEY UPDATE. For example:

INSERT INTO `usage`
(`thing_id`, `times_used`, `first_time_used`)
VALUES
(4815162342, 1, NOW())
ON DUPLICATE KEY UPDATE
`times_used` = `times_used` + 1
share|improve this answer
5  
Yeah, I believe SQL Server's equivalent is called MERGE. In general, the concept is often referred to as "UPSERT". – chaos Aug 2 '09 at 13:40
2  
Make a unique index on GEB and Topic – Chacha102 Aug 2 '09 at 13:41
4  
If you're running tables without keys then you have bigger problems than trying to save 1 query per execution (which is all this will do, as it bypasses doing a SELECT to check if exists) – iAn Aug 2 '09 at 13:42
3  
@blub: If you create a unique key on geb and topic it will work (ALTER TABLE table ADD UNIQUE geb_by_topic (geb, topic)). – chaos Aug 2 '09 at 13:43
1  
@Brooks: If you pass it a 0, it will actually use 0 as the value. So don't do that. Don't pass it anything, or pass it a NULL, to allow the auto_increment behavior to work (which otherwise, yes, works as you presume; see dev.mysql.com/doc/refman/5.5/en/example-auto-increment.html). – chaos May 17 '12 at 16:56
show 8 more comments

http://dev.mysql.com/doc/refman/5.0/en/replace.html

share|improve this answer
5  
Be aware that this is equivalent to a DELETE INSERT so it probably affects the primary key. – James Poulson May 28 '11 at 9:39
If you provide primary key, REPLACE will replace that row (with same PK). However, it really does DELETE INSERT, so it's different from update, in that values that you don't provide will be replaced by default values. They won't be ignored like if you were updating. – psycho brm Jan 23 at 11:50
To "REPLACE" so that unlisted values won't be touched, you need to use "INSERT INTO table (..) VALUES (..) ON DUPLICATE KEY UPDATE ..." – psycho brm Jan 23 at 11:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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