我正在使用Django和Python
unicode_countries = request.POST.getlist(u'countries')
Returns [u'ai', u'ag', u'aw', u'bs']
我的目标是将unicode_countries转换为MySQL IN字符串,它应该看起来像'ai','ag','aw','bs',我将在MySQL语句中使用“a where where in in('ai' ,'ag','aw','bs')“
请帮忙。
答案 0 :(得分:1)
无需转换。
MyModel.objects.filter(countries__in=unicode_countries)