With this simple database table: class Artist(models.Model): id = models.IntegerField(primary_ke y=True) name = models.CharField(max_length=25 5L, blank=True) prefix = models.CharField(max_length=32 L, blank=True) class Meta: db_ta...
With this simple database table: class Artist(models.Model): id = models.IntegerField(primary_ke y=True) name = models.CharField(max_length=25 5L, blank=True) prefix = models.CharField(max_length=32 L, blank=True) class Meta: db_table = 'artist' I want to be able to get a list of the first letter of the names with a