我有专栏:
select name from table where ids like %2%
我有SQL查询:
extends layout
block body
center
h1= title
p Welcome to #{title}
ul
each product in list_products //<-- Cannot read property 'length' of undefined
li= item.libelle
我需要得到结果: JEG 柑
但得到: JEG 柑 莫
那么如何编辑这个查询呢?我理解为什么我会得到mok因为喜欢%2%
答案 0 :(得分:3)
使用find_in_set()
:
where find_in_set(2, ids) > 0