25/11/2002, 21:08
|
| | | Fecha de Ingreso: mayo-2002 Ubicación: Lima, Peru
Mensajes: 4.619
Antigüedad: 22 años, 6 meses Puntos: 7 | |
¿Cómo crear un campo serial/autoincremento?
BD: MySQL
Respuesta:
Create table tablaEjemplo(campo_id int not null auto_increment... primary key(campo_id))
BD: SQLServer
Respuesta:
Create table tabla_ejemplo(campo_id int identity... primary key(campo_id)) |