I am running an fgetcsv query to import a bunch of data from a CSV into WordPress.
I am wondering how I can start an auto increment from a certain number, for example, from 1000 onwards.
$import1="INSERT into wp_postmeta (meta_id,post_id,meta_key,meta_value) values(',',',','first_name','$data[1]')";
This is an example of the code. the meta_id should use a normal auto increment, but the post_id I want to start from a certain number.
How would I accomplish this?