Mysql
 sql >> Database >  >> RDS >> Mysql

Come ottenere il prossimo ID di incremento automatico in mysql

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'