The issue is with the generated delete query where the value for nota_imdb is 3,3 instead of 3.3 and the value for tempo_duracao is not enclosed in quotes. To fix this, you can modify the original query to replace the comma with a dot for nota_imdb and enclose tempo_duracao in quotes. Here's the modified query:
SELECT id, titulo_filme, nota_imdb, tempo_duracao, COUNT(*)
FROM imdb
GROUP BY titulo_filme, nota_imdb, tempo_duracao
HAVING COUNT(*) > 1;
And here's the modified delete query:
DELETE FROM `imdb`
WHERE `imdb`.`id` = 77280
AND `imdb`.`titulo_filme` = '24 Little Hours'
AND `imdb`.`nota_imdb` = '3.3'
AND `imdb`.`tempo_duracao` = '1 hora 24 minutos'
LIMIT 1;
Note that I've enclosed the values for nota_imdb and tempo_duracao in quotes to ensure that they are treated as strings.