我根据表的一列 ( country_name
)从数据库中检索到这个国家列表country
:
list_countries = Country.objects.values_list('country_name', flat=True).distinct()
结果是这样的:
[u'', u'China', u'France', u'Germany', ...]
数据库中的某些值是空的。如何删除检索到的空,以便仅使用 country_name not null (cf country_name != ''
) 检索结果?