Does replace into have a where clause?

Posted by Lajos Arpad on Stack Overflow See other posts from Stack Overflow or by Lajos Arpad
Published on 2010-06-09T05:18:16Z Indexed on 2010/06/09 5:22 UTC
Read the original article Hit count: 460

Filed under:

I'm writing an application and I'm using MySQL as DBMS, we are downloading property offers and there were some performance issues. The old architecture looked like this: A property is updated. If the number of affected rows is not 1, then the update is not considered successful, elseway the update query solves our problem. If the update was not successful, and the number of affected rows is more than 1, we have duplicates and we delete all of them. After we deleted duplicates if needed if the update was not successful, an insert happens. This architecture was working well, but there were some speed issues, because properties are deleted if they were not updated for 15 days. Theoretically the main problem is deleting properties, because some properties are alive for months and the indexes are very far from each other (we are talking about 500, 000+ properties).

Our host told me to use replace into instead of deleting properties and all deprecated properties should be considered as DEAD. I've done this, but problems started to occur because of syntax error and I couldn't find anywhere an example of replace into with a where clause (I'd like to replace a DEAD property with the new property instead of deleting the old property and insert a new to assure optimization). My query looked like this:

replace into table_name(column1, ..., columnn) values(value1, ..., valuen) where ID = idValue

Of course, I've calculated idValue and handled everything but I had a syntax error. I would like to know if I'm wrong and there is a where clause for replace into.

I've found an alternative solution, which is even better than replace into (using simply an update query) because deletes are happening behind the curtains if I use replace into, but I would like to know if I'm wrong when I say that replace into doesn't have a where clause. For more reference, see this link:

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

Thank you for your answers in advance, Lajos Árpád

© Stack Overflow or respective owner

Related posts about mysql-query