I have this MySQL query that I try to perform and for some reason it does not work. Can anyone see the error? I have read other questions since yesterday and can not find the answer. I do not find my mistake really.
CREATE TABLE IF NOT EXISTS empleados2(
'personaId' int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
'nombre' text(11),
'apellido' text(11),
'direccion' text(20),
'cargo' text(20),
'sueldo_bruto' double(11),
'cargas_sociales' double(11),
'vacaciones' double(11),
'sueldo_neto' double(11)
);
I've also tried this one, but it's not going either:
CREATE TABLE IF NOT EXISTS empleados2(
'personaId' int(11) NOT NULL AUTO_INCREMENT,
'nombre' text(11),
'apellido' text(11),
'direccion' text(20),
'cargo' text(20),
'sueldo_bruto' double(11),
'cargas_sociales' double(11),
'vacaciones' double(11),
'sueldo_neto' double(11),
PRIMARY KEY('personaId')
);