Answers for "delete and start from 1 primary key muysql"

0

delete and start from 1 primary key muysql

alter table yourTableName AUTO_INCREMENT=1; 
truncate table yourTableName; 

//After doing the above two steps, you will get the primary key beginning from 1
Posted by: Guest on June-25-2021

Code answers related to "delete and start from 1 primary key muysql"

Browse Popular Code Answers by Language