I'm trying to delete the records of my DB
but only the first 2 tables are deleted, nothing happens in the third one.
DELETE
cliente,
historia,
descripcion
FROM
cliente
INNER JOIN
historia ON historia.idCliente = cliente.idCliente
INNER JOIN
descripcion ON historia.idDescripcion = descripcion.idDescripcion
WHERE
cliente.idCliente = 6
Only the table cliente
e historia
is deleted in the table descripcion
nothing happens
The DB
physical is related as well;
Cliente <----------(1,n) Historia (1,1)-----------> Descripcion