Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好吧,假设我正在搜索“PersonName”,然后输入“person”,它没有找到该人,但“Person”找到了,有没有办法告诉它寻找与我的输入相似的任何内容?
我正在做这样的搜索:
$db->sqlquery(" SELECT `user_id` FROM `users` WHERE `username`LIKE ?", array("%$user%"));
这取决于字段的排序规则。
如果排序规则以 _cs 结尾,则区分大小写,如果以 _ci 结尾,则不区分大小写。
更改字段的属性和索引/搜索将随之而来。
可能想在您的查询中尝试 ILIKE 而不是 LIKE ?