sql >> Database >  >> RDS >> Mysql

Hoe de volgende auto-increment-id in mysql te krijgen

U kunt

. gebruiken
SELECT AUTO_INCREMENT
FROM information_schema.tables
WHERE table_name = 'table_name'
AND table_schema = DATABASE( ) ;

of als u information_schema niet wilt gebruiken, kunt u dit gebruiken

SHOW TABLE STATUS LIKE 'table_name'


  1. Testgegevens genereren in SQL Server

  2. mysql, herhaal kolomnamen

  3. Verbindingstime-out instellen in SQLAlchemy

  4. Hoe te bekijken welke Postgres-versie actief is