How to Alter Sequence in MySQL

Altering a sequence can be useful when you want to alter the next value of the sequence. Alter sequence was introduced in MariaDB 10.3. The SQL statement to use is:

alter sequence emp_seq_id start 10100;

IN THIS PAGE