mysql 批量更新数据库主键为int,bigint 类型,字段为自增类型

Posted mickey_wang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 批量更新数据库主键为int,bigint 类型,字段为自增类型相关的知识,希望对你有一定的参考价值。

 select table_name,
       concat(alter table `,table_name,` MODIFY , column_name,  , data_type , auto_increment;) as query script
  from information_schema.columns c
 where c.table_schema = pv_2
   and c.column_key =PRI 
   and c.data_type in ( int,bigint)
   and c.extra <> auto_increment
 order by table_name;

 

以上是关于mysql 批量更新数据库主键为int,bigint 类型,字段为自增类型的主要内容,如果未能解决你的问题,请参考以下文章

mysql 存储过程 若主键冲突则更新,不冲突则插入数据

hibernate 对象主键为string

怎么用SQL语句CREATE TABLE的主键为“自动增加”

mysql数据库中自动增长的主键也可以手动插入值吗?如何插入

MySQL批量更新数据总结

mybatis insert 之后,返回主键为null,我的配置如下