1

我想重用正在删除的 AUTO INCREMENT ID。我正在使用 MySQL 数据库。

提前致谢

4

2 回答 2

2
SELECT id + 1 FROM TableName t1 WHERE NOT EXISTS (SELECT 1 FROM TableName t2 WHERE t2.id = t1.id + 1) limit 0,1
于 2012-07-24T07:58:01.897 回答
0

发现可以用这个

SELECT Auto_increment FROM information_schema.tables WHERE table_name='tableName'  AND table_schema = 'dataBaseName';
于 2012-07-24T07:06:18.077 回答