MySQL doesn't really support sequence numbers, but it does have an auto increment value which may be applied to a primary key of a table. A column with an auto increment "Extra Attribute" set automatically increments the value by 1 from the last number. To reset or modify auto increment value, you may use the following ALTER command.
mysql> alter table {table_name} auto_increment = 1;