I found out in this answer I can easily delete duplicate rows (duplication based on N columns) in a table with raw SQL.
Is there an equivalence using Django ORM ? The only stuff I found in Django concerned duplicated based on 1 column only.
Note : I know there is a way to prevent future duplicates (based on several fields) in Django, using unique_together field (but I didn't know before).
Thanks.