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.
我正在使用concat_ws搜索表格(下面给出的代码)。
concat_ws
SELECT * FROM customers WHERE CONCAT_WS('',lastname,firstname) LIKE '%$string%'
我的问题是大写和小写分开。
如果我搜索 AB,我会得到 10 个结果,但如果我搜索 ab,我会得到 1 个结果。
有没有办法得到相同的结果,意思是不区分大写和小写?
也许试试这个:
SELECT * FROM customers WHERE LOWER(CONCAT_WS('',lastname,firstname)) LIKE '%$string%'
并以小写字母搜索?
解决方案假定$string变量始终为小写。
$string