1. Create a sequence table CREATE TABLE `sequence` ( `name` varchar(50) COLLATE utf8_bin NOT NULL COMMENT 'Sequence name', `current_value` int(11) NOT NULL COMMENT 'Current value of the sequence', `increment` int(11) NOT NULL DEFAULT '1' COMMENT 'Sequence auto-increment', PRIMARY KEY (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; 2. Create – Function to get current value DROP FUNCTION IF EXISTS currval; DELIMITER $ CREATE FUNCTION currval (seq_name VARCHAR(50)) RETURNS INTEGER LANGUAGE SQL DETERMINISTIC CONTAINS SQL SQL SECURITY DEFINER COMMENT '' BEGIN DECLARE value INTEGER; SET value = 0; SELECT current_value INTO value FROM sequence WHERE name = seq_name; RETURN value; END $ DELIMITER ; 3. Create – function to get the next value DROP FUNCTION IF EXISTS nextval; DELIMITER $ CREATE FUNCTION nextval (seq_name VARCHAR(50)) RETURNS INTEGER LANGUAGE SQL DETERMINISTIC CONTAINS SQL SQL SECURITY DEFINER COMMENT '' BEGIN UPDATE sequence SET current_value = current_value + increment WHERE name = seq_name; RETURN currval(seq_name); END $ DELIMITER ; 4. Create – Function to update current value DROP FUNCTION IF EXISTS setval; DELIMITER $ CREATE FUNCTION setval (seq_name VARCHAR(50), value INTEGER) RETURNS INTEGER LANGUAGE SQL DETERMINISTIC CONTAINS SQL SQL SECURITY DEFINER COMMENT '' BEGIN UPDATE sequence SET current_value = value WHERE name = seq_name; RETURN currval(seq_name); END $ DELIMITER ; 5. Test adding instance to execute SQL INSERT INTO sequence VALUES ('testSeq', 0, 1);-- Add a sequence name and initial value, as well as the auto-increment rateSELECT SETVAL('testSeq', 10);-- Set the initial value of the specified sequenceSELECT CURRVAL('testSeq');-- Query the current value of the specified sequenceSELECT NEXTVAL('testSeq');-- Query the next value of the specified sequence This is the end of this article about the sample code for implementing auto-increment sequence in MySQL. For more information about auto-increment sequence in MySQL, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Understanding the CSS transform-origin property
>>: A detailed introduction to the Linux directory structure
Customizing images using Dockerfile Image customi...
This article uses an example to describe how to r...
How to reset the initial value of the auto-increm...
Linux is currently the most widely used server op...
Table of contents What is a web container? The Na...
This article mainly introduces several scheduling...
Life cycle classification Each component of vue i...
Table of contents 1. How to update in batches Con...
Table of contents 1. Hash table principle 2. The ...
It is very simple to build a go environment under...
Table of contents 1. Function signature 2. Functi...
1. Take nginx as an example Nginx installed using...
Table of contents 1. Enter the network card confi...
How to solve the problem of forgetting the root p...
On Saturday, the redis server on the production s...