So, I have a huge list of records in the database ( MySql )
I use Python and Django when building my web application.
This is the basic Django model that I use:
class DJ(models.Model): alias = models.CharField(max_length=255)
In my DB I now have duplicates
eg. Higher and higher, higher and higher, higher, DJ higher and higher, Jokey Above and Beyond, ...
This is a problem ... because it hits a big hole in my DB and therefore my application.
I am sure that other people have encountered this problem and thought about it.
My ideas are as follows:
I literally have no clue how to do this, even if someone can point me in a direction that would be very helpful.
Any help would be greatly appreciated! Thanks guys.
source share