How to make my third multisite blog start with id 1000?

In MySQL

ALTER TABLE wp_blogs AUTO_INCREMENT = 10000;

Than create the new site and switch back the auto_increment

ALTER TABLE wp_blogs AUTO_INCREMENT = 3;