Search
 
SCRIPT & CODE EXAMPLE
 

PHP

phpmyadmin reset auto_increment

In phpMyAdmin, select the table you want to change the options from.
Then click on the "Operations" button at the top of the website
There, change your "AUTO_INCREMENT" value to something greater than
the highest value of your table and press the "OK" button.
Comment

reset id auto increment after deleting a table row in phpmyadmin

SET @autoid :=0; 
UPDATE table_name SET id = @autoid:=(@autoid+1);
ALTER TABLE table_name AUTO_INCREMENT=1;
Comment

PREVIOUS NEXT
Code Example
Php :: php get char from string position 
Php :: php check if link exists 
Php :: autoload file in laravel 
Php :: operators in php 
Php :: php mod 
Php :: custom autoload without composer php psr4 
Php :: select option in laravel 
Php :: php new PDO timeout 
Php :: has password argon2i 
Php :: eloquent where comparing two columns 
Php :: codeigniter base_url 
Php :: login selected user laravel 
Php :: laravel eloquent multiple join with where conditions 
Php :: Genrate Random Integer 10 digits in php 
Php :: como destruir uma variavel de sessão 
Php :: laravel get route parameters in blade 
Php :: isempty php 
Php :: route codeigniter 
Php :: how to make core controller codeigniter 3 more than 1 
Php :: laravel trim string blade 
Php :: php pdo sql server connect 
Php :: Session/Session.php error codeigniter 3 
Php :: php define array first 10 number 
Php :: ?? php 
Php :: create table laravel 
Php :: picture on picture php 
Php :: laravel bd query 
Php :: laravel get second last record 
Php :: json encode php 
Php :: wordpress enqueue if shortcode 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =