is there any way to get current auto increment id in INSERT INTO table and sum other number (1000) in mysql and insert to that row with on query;
INSERT INTO table_name (col1, col2,...) VALUES ('val1', CURRENT ROW ID+1000,...);
I can do with 2 query: first insert row and get last insert id sum insert id with number and update row with new value
but I want to do this by just one query if possible.