表的基本数据是存放在mysql的information_schema库的tables表中,我们可以使用sql查出。
select auto_increment from information_schema.tables where table_schema='db name' and table_name='table name';
例子:查看 test_user 库的 user 表 auto_increment
mysql> select auto_increment from information_schema.tables where table_schema='test_user' and table_name='user'; +----------------+(北联网教程,专业提供视频软件下载)
……