查看数据库中每张表自增种子值、增量值 无 select table_name,ident_seed(table_name) as identity_seed,ident_incr(table_name) as identity_increase from information_schema.tables where ident_seed(table_name) is not null
查看数据库中每张表自增种子值、增量值
select table_name,ident_seed(table_name) as identity_seed,ident_incr(table_name) as identity_increase from information_schema.tables where ident_seed(table_name) is not null