0
$sql = "INSERT INTO `saida` (`nomeProduto`, `quantidadeProduto`, `pa`, `setor`, `dataSaida`) VALUES (
'$nomeProduto', $quantidadeProduto, '$pa', '$setor', '$dataSaida')";
$inserir = mysqli_query($conexao, $sql);
Example after I perform this Insert, I would like to automatically decrease the amount of products available in estoque_produto
, how can I perform this ? subtraction and verification operation.
Example I can not output product because the quantity is insufficient or zero
Use a Trigger
– Augusto Vasques
pq does not update next?
– Ricardo Pontual