Můžete použít
SELECT AUTO_INCREMENT
FROM information_schema.tables
WHERE table_name = 'table_name'
AND table_schema = DATABASE( ) ;
nebo pokud si nepřejete používat information_schema, můžete použít toto
SHOW TABLE STATUS LIKE 'table_name'
Můžete použít
SELECT AUTO_INCREMENT
FROM information_schema.tables
WHERE table_name = 'table_name'
AND table_schema = DATABASE( ) ;
nebo pokud si nepřejete používat information_schema, můžete použít toto
SHOW TABLE STATUS LIKE 'table_name'