Horje
how to auto increment id after delete value in php mysql Code Example
how to auto increment id after delete value in php mysql
SET @num := 0;

UPDATE your_table SET id = @num := (@num+1);

ALTER TABLE tableName AUTO_INCREMENT = 1;

/*************     OR     ***********/
ALTER TABLE table_name AUTO_INCREMENT=1 




Php

Related
Ajouter un texte par défaut sur toutes vos publications WordPress Code Example Ajouter un texte par défaut sur toutes vos publications WordPress Code Example
current menu item Code Example current menu item Code Example
list database table rows plugin wordpress Code Example list database table rows plugin wordpress Code Example
php ascii to decimal Code Example php ascii to decimal Code Example
cron job setting for laravel in cpanel Code Example cron job setting for laravel in cpanel Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8