Puoi usare
SELECT AUTO_INCREMENT
FROM information_schema.tables
WHERE table_name = 'table_name'
AND table_schema = DATABASE( ) ;
oppure se non desideri utilizzare information_schema puoi utilizzare questo
SHOW TABLE STATUS LIKE 'table_name'
Puoi usare
SELECT AUTO_INCREMENT
FROM information_schema.tables
WHERE table_name = 'table_name'
AND table_schema = DATABASE( ) ;
oppure se non desideri utilizzare information_schema puoi utilizzare questo
SHOW TABLE STATUS LIKE 'table_name'