how to reset my table to start counting from 1 mysql code example
Example: reset auto increment mysql
/* After "SEQUENCE" place table name + column + seq */
ALTER SEQUENCE users_id_seq RESTART WITH 1;
/* After "SEQUENCE" place table name + column + seq */
ALTER SEQUENCE users_id_seq RESTART WITH 1;