Django -Befehl, um alle Spalten einer Tabelle abzurufen

table = Country.objects.values_list('name_of_the_country', 'country_code')
Dangerous Dove