Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Como obter o próximo id de incremento automático no mysql


Você pode usar
SELECT AUTO_INCREMENT
FROM information_schema.tables
WHERE table_name = 'table_name'
AND table_schema = DATABASE( ) ;

ou se você não deseja usar information_schema você pode usar este
SHOW TABLE STATUS LIKE 'table_name'