If you really want to know the following auto_increment value, try SHOW TABLE STATUSreturning the following field Auto_increment, for example:
SHOW TABLE STATUS WHERE name = your_table_name;
or
SELECT Auto_increment
FROM information_schema.tables
WHERE table_schema = DATABASE() AND table_name = your_table_name
source
share