【mysql】id主键列乱了之后,重新排序(可根据日期顺序)

一、ID中断不连续的,重新设置为连续的ID

alter table table_name drop id;
alter table table_name add id int not null first;
alter table table_name modify column id int not null auto_increment, add primary key(id);
select * from table_name order by id;

二、根据日期顺序,重新排列ID

alter table table_name drop id;
alter table table_name add id int not null first;

SET @row_number = 0;
UPDATE table_name
SET id = (@row_number := @row_number + 1)
ORDER BY ref_date;

alter table table_name modify column id int not null auto_increment, add primary key(id);
select * from table_name order by id;

参考文章:

mysql根据时间对数据重新更改序号_mob649e81593bda的技术博客_51CTO博客

mysql--id主键列乱了之后,重新排序_mysql 主键排序异常-CSDN博客

相关推荐
ROCKY_8174 小时前
Mysql复习(二)
数据库·mysql·oracle
问道飞鱼7 小时前
【知识科普】认识正则表达式
数据库·mysql·正则表达式
HaiFan.7 小时前
SpringBoot 事务
java·数据库·spring boot·sql·mysql
水根LP497 小时前
linux系统上SQLPLUS的重“大”发现
数据库·oracle
途途途途7 小时前
精选9个自动化任务的Python脚本精选
数据库·python·自动化
04Koi.8 小时前
Redis--常用数据结构和编码方式
数据库·redis·缓存
silver98868 小时前
mongodb和Cassandra
数据库
PersistJiao8 小时前
3.基于 Temporal 的 Couchbase 动态 SQL 执行场景
数据库·sql
上山的月8 小时前
MySQL -函数和约束
数据库·mysql
zhcf9 小时前
【MySQL】十三,关于MySQL的全文索引
数据库·mysql