“Agregar incremento automático en ID” Código de respuesta

Cómo insertar incremento automático

ALTER TABLE yourTableName
MODIFY yourColumnName INT NOT NULL AUTO_INCREMENT;
Cooperative Caiman

¿Qué pasa si se usa ID de incremento automático?

CREATE TABLE `tbl_new` (
    `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
    PRIMARY KEY (`id`)
) AUTO_INCREMENT=2200000000;

RENAME TABLE `tbl` TO `tbl_old`, `tbl_new` TO `tbl`;
Silly Shrike

Agregar incremento automático en ID

ALTER TABLE jobs
MODIFY job_id INT NOT NULL AUTO_INCREMENT;
tanya singh

Respuestas similares a “Agregar incremento automático en ID”

Preguntas similares a “Agregar incremento automático en ID”

Más respuestas relacionadas con “Agregar incremento automático en ID” en Sql

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código