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.com2009-12-06T19:25:19Zhttp://stackoverflow.com/feeds/question/767161http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/767161/use-current-autoincrement-value-as-basis-for-another-field-in-the-same-insert-qu0Use current auto_increment value as basis for another field in the same INSERT query - is this possible in MySQL?qeorge2009-04-20T06:48:33Z2009-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#7672301Answer by tylerl for Use current auto_increment value as basis for another field in the same INSERT query - is this possible in MySQL?tylerl2009-04-20T07:22:50Z2009-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#7672792Answer by Piskvor for Use current auto_increment value as basis for another field in the same INSERT query - is this possible in MySQL?Piskvor2009-04-20T07:46:02Z2009-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#7676100Answer 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 McNulty2009-04-20T09:48:32Z2009-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>