ERROR 1064 (42000): ¿Tiene un error en la sintaxis SQL en la columna de relleno cero?
El siguiente es el error y ocurre cuando implementas ZEROFILL incorrectamente:
mysql> create table DemoTable
-> (
-> StudentCode int(10) NOT NULL ZEROFILL AUTO_INCREMENT PRIMARY KEY
-> );
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ZEROFILL AUTO_INCREMENT PRIMARY KEY
)' at line 3
Para una implementación correcta, utilice la siguiente sintaxis:
Sintaxis
yourColumnName int(10) ZEROFILL NOT NULL AUTO_INCREMENT PRIMARY KEY
Primero creemos una tabla:
mysql> create table DemoTable
-> (
-> StudentCode int(10) ZEROFILL NOT NULL AUTO_INCREMENT PRIMARY KEY
-> );
Query OK, 0 rows affected (0.55 sec)
Inserte algunos registros en la tabla usando el comando insertar:
mysql> insert into DemoTable values();
Query OK, 1 row affected (0.21 sec)
mysql> insert into DemoTable values();
Query OK, 1 row affected (0.11 sec)
mysql> insert into DemoTable values();
Query OK, 1 row affected (0.28 sec)
mysql> insert into DemoTable values();
Query OK, 1 row affected (0.10 sec)
mysql> insert into DemoTable values();
Query OK, 1 row affected (0.10 sec)
Muestre todos los registros de la tabla usando la declaración de selección:
mysql> select *from DemoTable;
Esto producirá el siguiente resultado:
+-------------+
| StudentCode |
+-------------+
| 0000000001 |
| 0000000002 |
| 0000000003 |
| 0000000004 |
| 0000000005 |
+-------------+
5 rows in set (0.00 sec)