Thursday, February 24, 2022

MySQL Reset Auto Increment Values

  • ปัญหาคือ ทดสอบระบบ เรียบร้อย ต้องการให้  primary key ที่เป็น auto increment เริ่มต้นใหม่

วิธีแรก

  • ลบ table แล้ว สร้างใหม่ อันนี้ไม่แนะนำ ยุ่งยาก

วิธีที่สอง (ที่ควรทำ)

ALTER TABLE table_name AUTO_INCREMENT = value;

  • สมมุติ เราต้องการให้เริ่ม auto increment ที่ 1 ของ table ชื่อ tb_job

ALTER TABLE tb_job AUTO_INCREMENT = 1;

Ref

  • https://www.mysqltutorial.org/mysql-reset-auto-increment
  • https://www.techonthenet.com/mysql/auto_increment_reset.php#:~:text=In%20MySQL%2C%20the%20syntax%20to,column%20you%20wish%20to%20reset.

No comments:

Post a Comment

Popular Posts