How do I set the initial value for an \"id\" column in a MySQL table that start from 1001?
I want to do an insert \"INSERT INTO users (name, email) VALUES (\'{
\"INSERT INTO users (name, email) VALUES (\'{
SET GLOBAL auto_increment_offset=1;
SET GLOBAL auto_increment_increment=5;
auto_increment_offset: interval between successive column values
auto_increment_offset: determines the starting point for the AUTO_INCREMENT column value. The default value is 1.
read more here