“MySQL SET ID Auto incremento” Código de respuesta

ID de incremento automático de restablecimiento de MySQL

SET  @num := 0;

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

ALTER TABLE your_table AUTO_INCREMENT =1;
Important Ibis

MySQL SET ID Auto incremento

ALTER TABLE users AUTO_INCREMENT=1001;
Elegant Emu

Valor de incremento automático de cheques mysql

SELECT AUTO_INCREMENT FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'database_name' AND TABLE_NAME = 'table_name';
Cute Crayfish

insertar en el incremento automático mysql

/* To insert into an auto incrementing field without specifing every column in
the table, you can use the key word default in the place of the auto 
incrementing column*/

INSERT INTO my_table VALUES(default, "test1", 222)
/*VS */
INSERT INTO my_table(name, num) VALUES("test1", 222)
/*Having to type out all of the column names except the auto incrementing one
can be very tedious when you have many columns, just use the keyword defualt
instead and you only have to type it once.
Just Make It Global

Respuestas similares a “MySQL SET ID Auto incremento”

Preguntas similares a “MySQL SET ID Auto incremento”

Más respuestas relacionadas con “MySQL SET ID Auto incremento” en Sql

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código