我已经使用带有LIKE子句的Query实现了搜索,并且两侧都有%通配符。
我的专栏有国家名称。如果我用P或PAK搜索它会显示结果但是如果我用'我住在巴基斯坦'它没有比较。
我理解的是它与子字符串匹配。
是否有可能让我的反之亦然,就像我通过字符串'我住在巴基斯坦'它与字段中的字符匹配并获得巴基斯坦的结果。
即时帮助将不胜感激。
答案 0 :(得分:0)
您可以用逗号替换空格,然后使用find_in_set
。假设您的字符串为document.getElementById('engStartDate').value=endDate.toLocaleDateString('en-IN',options);
,请考虑以下问题:
$str
答案 1 :(得分:0)
试试这个
public function searchCountry($value)
{
$value = $value;
$query = $this->db->query("SELECT * FROM table_name WHERE country LIKE '%$value%' ");
$result = $query->result_array();
return $result;
}
答案 2 :(得分:0)
这可行(免责声明:未经测试):
public function searchCountry($value)
{
$sql = "SELECT DISTINCT FROM `countries`";
$value = explode(' ', $value);// use all words from query
$first_match = FALSE;
foreach ($value as $k => $v)
{
if (strlen($v) >= 3)// exclude 1 and 2 letter words if want
{
if ( ! $first_match)
{
$sql .= " WHERE `name` LIKE %$v%";
}
else
{
$sql .= " OR `name` LIKE %$v%";
}
}
}
$sql .= " LIMIT 50";
$query = $this->db->query($sql);
$result = $query->result_array();
return $result;
}
但您可能应该使用@Mureinik解决方案。
答案 3 :(得分:0)
你可以使用codeigniter框架中的like()函数。
$this->db->like();
此功能使您可以生成LIKE子句,对搜索有用。
注意:传递给此函数的所有值都会自动转义。
简单的键/值方法: $ this-> db-> like(' title',' match');
// Produces: WHERE title LIKE '%match%'
如果您使用多个函数调用,它们将与AND链接在一起:
$this->db->like('title', 'match');
$this->db->like('body', 'match');
// WHERE title LIKE '%match%' AND body LIKE '%match%
如果要控制放置通配符(%)的位置,可以使用可选的第三个参数。您的选择是在'之后,'之后'和'两个' (这是默认值。)
$this->db->like('title', 'match', 'before');
// Produces: WHERE title LIKE '%match'
$this->db->like('title', 'match', 'after');
// Produces: WHERE title LIKE 'match%'
$this->db->like('title', 'match', 'both');
// Produces: WHERE title LIKE '%match%'
如果您不想使用通配符(%),可以将选项' none'传递给可选的第三个参数。
$this->db->like('title', 'match', 'none');
// Produces: WHERE title LIKE 'match'
我认为您需要的是搜索和比较所提供文本中的每个单词,我认为这将有所帮助。
$temp = array();
$str = array();
$str = explode(' ', $string);
foreach ( $str as $word) {
if (strlen($word) > 2) {
$this->db->or_like('country_name', $word, 'both');
} else {
continue;
}
}
$countries = $this->db->get('countries');
我认为在美元国家,您将获得所有必需的结果。
答案 4 :(得分:0)
您可以使用正则表达式技巧:
where country regexp replace($str, ' ', '|')
这构造了表达式:
where country regexp 'I|live|in|Pakistan'
由于正则表达式的规则,的计算结果为真。