Categories
MySQL

Reset auto increment values in MySQL

When you assign one field as a primary key you can use auto-increment attribute to that field. It generates unique identity for the row inserting a unique auto increment value. You can also reset auto increment values.

You may like:  Referential integrity

For example if a table has 5 rows and you insert another row then the automatic value for the new row would be 6.

Using the ALTER TABLE statement you can reset auto increment value.

ALTER TABLE tbl_name AUTO_INCREMENT = 5;

Also truncating a table reset auto increment to zero.

TRUNCATE TABLE tbl_name;
Avatar for Namaste UI (Author)

By Namaste UI (Author)

Namaste UI collaborates closely with clients to develop tailored guest posting strategies that align with their unique goals and target audiences. Their commitment to delivering high-quality, niche-specific content ensures that each guest post not only meets but exceeds the expectations of both clients and the hosting platforms. Connect with us on social media for the latest updates on guest posting trends, outreach strategies, and digital marketing tips. For any types of guest posting services, contact us on info[at]namasteui.com.

Leave a Reply

Your email address will not be published. Required fields are marked *