Re: How to generate sequence in MySql
create a real sequence as follows:
"""
create table sequence (
name varchar(64) primary key,
last_val int unsigned not null
) engine=myisam;
INSERT INTO sequence (name, last_val) VALUES ('seq', 0);
"""
now when you want to get the next number in the sequence do:
"""
UPDATE sequence SET last_val=@val:=last_val+1 WHERE name='table_changes';
"""
the key here is that the sequence table is myisam, and so does not respect transactions. if you use a table that respects transactions, you will block when there are multiple transactions trying to get a sequence, whereas what you want is to just get a sequence.
Subject
Views
Written By
Posted
166815
March 13, 2007 08:05AM
73154
March 22, 2007 10:34PM
66674
March 26, 2007 08:49AM
52994
March 26, 2007 09:31PM
30620
April 04, 2007 03:00AM
24281
April 05, 2007 02:37AM
21264
November 10, 2008 06:40AM
26259
November 21, 2007 03:50AM
Re: How to generate sequence in MySql
29933
January 29, 2008 08:33PM
17430
February 06, 2008 12:16PM
18182
October 15, 2008 01:03PM
12167
November 05, 2008 09:50AM
13969
November 10, 2008 06:32AM
15236
December 14, 2008 07:08AM
17999
January 23, 2009 05:38PM
8397
March 16, 2009 09:00AM
9892
March 16, 2009 09:18AM
8311
March 16, 2009 09:51AM
9186
March 16, 2009 10:23AM
8163
April 12, 2009 07:58AM
9713
April 03, 2009 03:07PM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.