I am doing a Mysql class work and I would like to know another way of UPDATE because it is not changing.
Update the price of the service of all the animals that received bath in the pet shop and had value less than 15 reais.
UPDATE 'aula_sub_query'.'servico_prestado'
SET 'preco' = 25.00
WHERE 'cod_SERVICO_PRESTADO' = 1 AND 'preco' < 25.00;