“Limpe uma tabela em Mysql” Respostas de código

Remova todos os registros da tabela mysql

/* Will delete all rows from your table. Next insert will take next auto increment id. */
DELETE from tableName;
/* Will delete all rows from your table but it will start from new row with 1. */
TRUNCATE tableName;
Tommy

Limpe uma tabela em Mysql

TRUNCATE tablename
Healthy Hippopotamus

Respostas semelhantes a “Limpe uma tabela em Mysql”

Perguntas semelhantes a “Limpe uma tabela em Mysql”

Mais respostas relacionadas para “Limpe uma tabela em Mysql” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código