PHP-MySql:修改表列的 Like 查询
我在数据库表中有一个列,其代码如下: 12 34 56
在我的 php 页面中,我有一个用于查找代码的文本表单,并且查询是:
SELECT column as colmn_find FROM CER WHERE column LIKE '%".$term."%';
如何在不使用空格?
所以如果我发现 12 34 与 1234 相同
I have a column in a database table with a code LIKE this: 12 34 56
In my php page I have a text form for find the code AND the query is:
SELECT column as colmn_find FROM CER WHERE column LIKE '%".$term."%';
How I search the code also without the white spaces?
So if i find 12 34 is the same of 1234
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 where 子句中的空格替换为空,它将被视为搜索中没有空格。
Replace the spaces in your where clause with nothing and it will be treated as if it had no spaces in your search.