我已经制作了一个效果很好的搜索引擎,但我希望它忽略数据库条目中的符号。
e.g。我搜索A * B-C
在数据库中,我有一个包含ABC的列。
我希望它能带回这条记录,甚至认为它有符号。
我该怎么做?
嗨,我试过了,但它不起作用。
这是我的代码:
$query = '%' . rawurlencode($queryRaw) . '%' ;
$queryClean = ereg_replace("[^A-Za-z0-9]", "%", $query) ;
$result = $dbh->prepare("SELECT supplier_details.id as supid, name, languages.languages, countries.country
FROM supplier_details, languages, countries
WHERE languageRef = languages.id
AND countryRef = countries.id
AND (name LIKE ? OR name LIKE ?)
LIMIT 50") ;
$result->bindParam(1, $query, PDO::PARAM_INT) ;
$result->bindParam(2, $queryClean, PDO::PARAM_INT) ;
$result->execute() ;
答案 0 :(得分:0)
select *
from tbl
where clmn like '%A%B%C%'