如何根据MyModel
MyModel
我想用django orm无法完成,也许SQL查询可以帮助吗?
类似的东西:
MyModal.objects.extra(count="SQL query that finds occurence count of a certain phrase in certain model field")
完整的原始查询也很好。
答案 0 :(得分:0)
试试这个:
set @str='a b a c';
select length(@str)-length(replace(@str,'a','')) as 'number of occuarence'