I have the following tables
Produto {
idproduto
nome
preco
}
Promocao {
descricao
datainicio
datatermino
id_produto_fk
}
When trying to insert a new promotion I get the following error:
com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Cannot add or update a child row: a foreign key constraint fails ('mercado_db'.'promocao', CONSTRAINT 'produto_id_fk' FOREIGN KEY ('id_produto_fk') REFERENCES 'produto' ('idproduto') ON DELETE NO ACTION ON UPDATE NO ACTION)