When does MySQL attempt to update an index for a column? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T06:53:35Z http://stackoverflow.com/feeds/question/284365 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/284365/when-does-mysql-attempt-to-update-an-index-for-a-column 2 When does MySQL attempt to update an index for a column? Jim Fiorato 2008-11-12T15:48:22Z 2008-11-13T19:00:30Z <p>I'm trying to determine what situations MySQL updates an index. Say I have the following table:</p> <pre><code>CREATE TABLE MyTable ( ID INT NOT NULL AUTO_INCREMENT, MyIndexedColumn VARCHAR NOT NULL, MyNonIndexedColumn VARCHAR, PRIMARY KEY (ID), INDEX MyNewIndex(MyIndexedColumn) ) </code></pre> <p>Then I run the following SQL to insert a row:</p> <pre><code>INSERT INTO MyTable (MyIndexedColumn, MyNonIndexedColumn) VALUES ('MyTestValue', 'MyTestValue'); </code></pre> <p>I understand that this query will add some sort of hash key to a B-Tree index in MySQL for the value 'MyTestValue'.</p> <p>Now, if I run the following statement, will that force that B-Tree index to be updated, even if I haven't changed the value of the column?</p> <pre><code>UPDATE MyTable SET MyIndexedColumn = 'MyTestValue', MyNonIndexedColumn = 'A New Value' WHERE ID = 1; </code></pre> <p>Is MySQL smart enough to determine that? Or by just making that column part of the update statement, am I telling MySQL that possibly something has changed, and it should do the work to update the index?</p> http://stackoverflow.com/questions/284365/when-does-mysql-attempt-to-update-an-index-for-a-column/284376#284376 2 Answer by Greg for When does MySQL attempt to update an index for a column? Greg 2008-11-12T15:52:32Z 2008-11-12T15:52:32Z <p>If you run that query in the MySQL client, you'll see something like </p> <blockquote> <p>Rows matches: 1, Rows Updated: 0</p> </blockquote> <p>So MySQL definitely knows when a row has changed or not - I'd assume from there that they're smart enough not to update the index from there.</p> http://stackoverflow.com/questions/284365/when-does-mysql-attempt-to-update-an-index-for-a-column/284378#284378 1 Answer by Ciaran McNulty for When does MySQL attempt to update an index for a column? Ciaran McNulty 2008-11-12T15:53:46Z 2008-11-12T15:53:46Z <p>When you perform an UPDATE MySQL reports the number of rows matched and the number changed. Running your example query gives the output:</p> <p>Query OK, 0 rows affected (0.00 sec) Rows matched: 1 Changed: 0 Warnings: 0</p> <p>I would be very surprised if MySQL didn't then use that information to determine whether to update the index.</p> http://stackoverflow.com/questions/284365/when-does-mysql-attempt-to-update-an-index-for-a-column/284383#284383 3 Answer by Robert Gamble for When does MySQL attempt to update an index for a column? Robert Gamble 2008-11-12T15:55:38Z 2008-11-12T15:55:38Z <p>Not only is MySQL smart enough to not update the index if the value hasn't changed, it is smart enough to not rewrite the column value with the same value.</p> http://stackoverflow.com/questions/284365/when-does-mysql-attempt-to-update-an-index-for-a-column/287880#287880 1 Answer by Ezran for When does MySQL attempt to update an index for a column? Ezran 2008-11-13T19:00:30Z 2008-11-13T19:00:30Z <p>I did some testing on this, with mysql 5.0.41, comparing updates against two identical innodb tables (7 cols, all integers), except that one table had 5 indexes (a couple of which were 2-column), and the other table had no indexes. (Each table had its primary key index, though.)</p> <p>Here's what I ended up with (the table without indexes is A, the table with indexes is B):</p> <pre><code>10k updates of an indexed column with a new value: A: 76.8 seconds B: 126.7 seconds 10k updates of a non-indexed column with a new value: A: 27.6 seconds B: 22.0 seconds 10k updates of a random column with its same value: A: 1.4 seconds B: 1.2 seconds 10k updates of a random column with an incremented value: A: 12.2 seconds B: 50.0 seconds 10k updates of an indexed column=&gt;same value, non-indexed column=&gt;new value: A: 7.0 seconds B: 10.5 seconds </code></pre> <p>I'm assuming that part of the reason the same/incremented value ones are faster is because I had to look up the row before doing the update, so it'd be cached in some form in mysql.</p> <p>This all pretty much plays out what the others are saying, but gives some perspective on how much things are affected by the indexes. However, in the specific case Jim asked about, it looks like it might be as much as 50% slower.</p>