Use current auto_increment value as basis for another field in the same INSERT query - is this possible in MySQL? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T19:25:19Z http://stackoverflow.com/feeds/question/767161 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/767161/use-current-autoincrement-value-as-basis-for-another-field-in-the-same-insert-qu 0 Use current auto_increment value as basis for another field in the same INSERT query - is this possible in MySQL? qeorge 2009-04-20T06:48:33Z 2009-04-20T09:48:32Z <p>In my table (MySQL) I have these fields:</p> <p><code>id</code> - primary, auto_increment</p> <p><code>hash</code> - base 36 representation of <code>id</code></p> <p>I'd like to populate both fields at once, using a stored procedure to compute the base 36 equivalent of the value id receives on INSERT. Something like this:</p> <pre><code>INSERT into `urls` (`id`,`hash`) VALUES (NULL,base36(`id`)); </code></pre> <p>Obviously this doesn't work, but I hope it illustrates what I'm trying to achieve. Is this possible, and if so, how?</p> <p>Note: I want to use only one query, so last_insert_id isn't helpful (at least as I understand).</p> http://stackoverflow.com/questions/767161/use-current-autoincrement-value-as-basis-for-another-field-in-the-same-insert-qu/767230#767230 1 Answer by tylerl for Use current auto_increment value as basis for another field in the same INSERT query - is this possible in MySQL? tylerl 2009-04-20T07:22:50Z 2009-04-20T07:22:50Z <p>This question is essentially a restatement of <a href="http://stackoverflow.com/questions/469009/can-you-access-the-auto-increment-value-in-mysql-within-one-statement">this other one</a>. In a nutshell, the advantage of an auto increment field is that the value is guaranteed unique, the disadvantage is that the value doesn't exist until the INSERT has already been executed. </p> <p>This is <em>necessarily</em> the case. You can, for example, retrieve for a given table what the next auto increment value will be, but because of concurrency concerns, you can't be sure that the query <strong>you</strong> execute next will be the one that gets that ID. Someone else might take it first. The assignment of the ID field has to be, therefore, an atomic get-and-increment operation that happens as the record is being inserted.</p> <p>In other words, though you may <em>want</em> to do this in a single query, you're simply not going to. There's a way you could theoretically pretend that you're only executing one query by attaching a trigger on INSERT that adds your alternate representation of the ID field after the fact. Alternately, you can use a non-auto-increment ID field based on something known ahead of time.</p> http://stackoverflow.com/questions/767161/use-current-autoincrement-value-as-basis-for-another-field-in-the-same-insert-qu/767279#767279 2 Answer by Piskvor for Use current auto_increment value as basis for another field in the same INSERT query - is this possible in MySQL? Piskvor 2009-04-20T07:46:02Z 2009-04-20T07:46:02Z <p>Although you can't do that in a single query, you can do this:</p> <pre><code>BEGIN TRANSACTION; INSERT into `urls` (`id`) VALUES (NULL); UPDATE `urls` SET `hash`=BASE36(`id`) WHERE `id`=LAST_INSERT_ID(); COMMIT; </code></pre> http://stackoverflow.com/questions/767161/use-current-autoincrement-value-as-basis-for-another-field-in-the-same-insert-qu/767610#767610 0 Answer by Ciaran McNulty for Use current auto_increment value as basis for another field in the same INSERT query - is this possible in MySQL? Ciaran McNulty 2009-04-20T09:48:32Z 2009-04-20T09:48:32Z <p>You could do this using a trigger, something like:</p> <pre><code>CREATE TRIGGER `calc_id_hash` AFTER INSERT ON `urls` FOR EACH ROW SET new.`hash`= BASE36(new.`id`); </code></pre>