MySQL ID starts to increase from 1 to quickly solve the problem of discontinuous ID

MySQL ID starts to increase from 1 to quickly solve the problem of discontinuous ID

mysql id starts from 1 and increases automatically to solve the problem of discontinuous id

As a person with obsessive-compulsive disorder, I cannot tolerate the problem of discontinuous ids after deleting some rows in the table. At first, I used

TRUNCATE TABLE tablename

To achieve the self-increment of id from the beginning, but this command will also clear the entire table, which is really a pitfall.

Later I found the correct approach:

alter table tablename auto_increment = 1;

This command will not change the content and order of the existing table. At the same time, the id of the newly inserted row will first use the deleted id to perfectly fill the vacant id.

MySQL auto-increment id jump solution (without deleting data)

Problem description:

I'm importing a large amount of data from Excel to MySQL. The auto-increment ids are not incremented in sequence, and many are skipped in the middle. I don't want to re-import them because of the huge amount.

Solution:

Sort by id or time from small to large ==> Get the row number ==> Replace the original id with the row number

SQL statement:

update tab as t1 join (select id,(@rowno:=@rowno+1) as rowno from tab a,(select (@rowno:=0)) b order by a.id) as t2 SET t1.id=t2.rowno WHERE t1.id=t2.id;

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Mysql auto-increment primary key id is not processed in this way
  • The difference and advantages and disadvantages of Mysql primary key UUID and auto-increment primary key
  • Detailed explanation of seven methods of returning auto-increment ID after inserting data in MySQL
  • Solution to running out of MySQL's auto-increment ID (primary key)
  • Mysql join table and id auto-increment example analysis
  • What you need to know about MySQL auto-increment ID
  • MySQL table auto-increment id overflow fault review solution
  • Summary of some small issues about MySQL auto-increment ID

<<:  Several techniques for playing sounds with CSS

>>:  Explore how an LED can get you started with the Linux kernel

Recommend

uni-app WeChat applet authorization login implementation steps

Table of contents 1. Application and configuratio...

Textarea tag in HTML

<textarea></textarea> is used to crea...

Vue implements file upload and download functions

This article example shares the specific code of ...

JavaScript commonly used array deduplication actual combat source code

Array deduplication is usually encountered during...

HTML+CSS+JavaScript to create a simple tic-tac-toe game

Table of contents Implementing HTML Add CSS Imple...

Implementation of importing and exporting vue-element-admin projects

vue-element-admin import component encapsulation ...

Problems with using multiple single quotes and triple quotes in MySQL concat

When dynamically concatenating strings, we often ...

In-depth understanding of MySQL global locks and table locks

Preface According to the scope of locking, locks ...

Summary of MySQL time statistics methods

When doing database statistics, you often need to...

Zabbix monitors the process of Linux system services

Zabbix automatically discovers rules to monitor s...

Detailed explanation of the abbreviation of state in react

Preface What is state We all say that React is a ...

Discussion on the way to open website hyperlinks

A new window opens. Advantages: When the user cli...

The use and difference between vue3 watch and watchEffect

1.watch listener Introducing watch import { ref, ...

How to install Nginx in a specified location in Centos system

How to install Nginx in a specified location in C...