Django自定义字段-自动添加COLLATE到查询
我正在尝试创建一个自定义字段,它会自动将 COLLATE 信息添加到 SQL 查询的 WHERE 部分中:
class IgnoreDiacriticsField(models.TextField):
def get_prep_lookup(self, lookup_type, value):
if lookup_type == 'exact':
return ' "' + self.get_prep_value(value) + '" COLLATE utf8_general_ci'
当我执行这样的查询时:
result = ModelClass.objects.filter(field='value')
即使查询(打印 result.query)有效且匹配,也找不到任何内容几行。我做错了什么吗?
我添加排序规则信息的原因是我想对这些字段执行查询并忽略任何变音符号。
I'm trying to create a custom field which would automatically add COLLATE information into the WHERE part of SQL query:
class IgnoreDiacriticsField(models.TextField):
def get_prep_lookup(self, lookup_type, value):
if lookup_type == 'exact':
return ' "' + self.get_prep_value(value) + '" COLLATE utf8_general_ci'
when I perform a query like this:
result = ModelClass.objects.filter(field='value')
then nothing is found, even though the query (print result.query) is valid and matches several rows. Am I doing something wrong?
The reason why I'm adding the collation iformation is that I want perform queries on those fields and ignore any diacritics.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否使用过 MySQL 1.2.1p2?来自 Django 文档
Are you using MySQL 1.2.1p2 by any chance? From the Django documentation