我的表格中有$(".more-less .more-block").each(function() {
if ($(this).height() <= adjustHeight())
return;
// use $(this) as selector to do whatever you want to do
// with the elements that are higher than your threshold
});
字段,其中包含以下值:
UPon
例如,我需要仅包含1,15,28
2,17,28
121,217,33
181,17
66,45,1171
988,38
17
现在,如果我使用17
,那么我将获得以下记录:
UPon LIKE '%17%'
但是,我需要sql查询只返回记录2,17,28
121,217,33
181,17
66,45,1171
17
,2,17,28
和181,17
我无法在条件中使用17
因为此字符可以在任何地方或根本不存在。
答案 0 :(得分:1)
(这是一个答案,因为它是您决定使用的,并且将使任何未来的读者更容易找到,而不是在评论中)
您可以将查询扩展为4个案例 - 即='17'或类似'%,17,%'或类似'17,%'或类似'%,17'