how to reset auto increment without losing data in mysql code example
Example 1: mysql reset auto increment value
ALTER TABLE table_name AUTO_INCREMENT = 1;
Example 2: reset auto increment mysql
/* After "SEQUENCE" place table name + column + seq */
ALTER SEQUENCE users_id_seq RESTART WITH 1;