Truncar uma tabela MySQL e definir um valor personalizado para incremento automático
Vamos primeiro criar uma tabela:
mysql> create table DemoTable825(Value int NOT NULL AUTO_INCREMENT PRIMARY KEY);
Query OK, 0 rows affected (0.63 sec)
Insira alguns registros na tabela usando o comando insert:
mysql> insert into DemoTable825 values();
Query OK, 1 row affected (0.16 sec)
mysql> insert into DemoTable825 values();
Query OK, 1 row affected (0.09 sec)
mysql> insert into DemoTable825 values();
Query OK, 1 row affected (0.11 sec)
Exiba todos os registros da tabela usando a instrução select:
mysql> select *from DemoTable825;
Isso produzirá a seguinte saída:
+-------+
| Value |
+-------+
| 1 |
| 2 |
| 3 |
+-------+
3 rows in set (0.00 sec)
A seguir está a consulta para truncar a tabela e atualizar o valor de auto_increment:
mysql> truncate table DemoTable825;
Query OK, 0 rows affected (0.58 sec)
A seguir está a consulta para alterar o valor auto_increment:
mysql> alter table DemoTable825 auto_increment=2000;
Query OK, 0 rows affected (0.16 sec)
Records: 0 Duplicates: 0 Warnings: 0
Insira alguns registros na tabela usando o comando insert:
mysql> insert into DemoTable825 values();
Query OK, 1 row affected (0.10 sec)
mysql> insert into DemoTable825 values();
Query OK, 1 row affected (0.12 sec)
mysql> insert into DemoTable825 values();
Query OK, 1 row affected (0.09 sec)
Exiba todos os registros da tabela usando a instrução select:
mysql> select *from DemoTable825;
Isso produzirá a seguinte saída:
+-------+
| Value |
+-------+
| 2000 |
| 2001 |
| 2002 |
+-------+
3 rows in set (0.00 sec)