Cómo que no tiene ese tipo de campo?
Cita: ¿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))
Identity