2
I am doing a Mysql class work and would like to know another form of UPDATE, because this is not changing.
Update the price of service of all animals that received bath in the pet shop and had less than 15 real value.
UPDATE `aula_sub_query`.`servico_prestado`
SET `preco` = 25.00
WHERE `cod_SERVICO_PRESTADO` = 1 AND `preco` < 25.00;
Ideally in these cases, you can also post your table structures so that we can help you better.
– FabianoLothor