Good afternoon, I'm a beginner in programming and I have the following difficulty. I have 2 tables:
CREATE TABLE produto(
id_produto int(10) NOT NULL PRIMARY KEY auto_increment,
nome varchar(45) NOT NULL,
)ENGINE=InnoDB;
and the second table:
CREATE TABLE img_produto(
id_img INTEGER UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
id_produto int(10) NOT NULL,
nome_img VARCHAR(45) NOT NULL,
FOREING KEY (id_produto) REFERENCES produto (id_produto) ON DELETE NO ACTION ON UPDATE NO ACTION
)ENGINE = InnoDB;
My question is how to proceed when registering a product with its image, the product ID (product_id) of the produto
table is automatically inserted into the img_produto
table in the id_produto
field?