I need to run this MYSQL statement in SQLServer
CREATE TABLE venta (
idVenta INTEGER PRIMARY KEY,
Fecha DATE NOT NULL,
Cliente_Cedula INTEGER NOT NULL,
producto_idProducto INTEGER NOT NULL,
empleado_Cedula INTEGER NOT NULL,
cantidad INTEGER NOT NULL,
FOREIGN KEY ([Cliente_Cedula])
REFERENCES cliente ([Cedula])
FOREIGN KEY ([empleado_Cedula])
REFERENCES empleado ([Cedula])
FOREIGN KEY ([producto_idProducto])
REFERENCES producto ([idProducto])
);
I get the following error message
Sintaxis incorrecta cerca de la palabra clave 'FOREIGN'.
Anyone here would be kind enough to tell me that I am doing wrong in the sentence?