Du kan bruge
SELECT AUTO_INCREMENT
FROM information_schema.tables
WHERE table_name = 'table_name'
AND table_schema = DATABASE( ) ;
eller hvis du ikke ønsker at bruge information_schema, kan du bruge dette
SHOW TABLE STATUS LIKE 'table_name'
Du kan bruge
SELECT AUTO_INCREMENT
FROM information_schema.tables
WHERE table_name = 'table_name'
AND table_schema = DATABASE( ) ;
eller hvis du ikke ønsker at bruge information_schema, kan du bruge dette
SHOW TABLE STATUS LIKE 'table_name'