PHP-MySql:修改表列的 Like 查询

发布于 2024-11-26 20:56:11 字数 236 浏览 0 评论 0原文

我在数据库表中有一个列,其代码如下: 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

-残月青衣踏尘吟 2024-12-03 20:56:11
SELECT column as colmn_find 
FROM CER 
WHERE REPLACE(column, ' ', '') LIKE '%YOURTERM%';

将 where 子句中的空格替换为空,它将被视为搜索中没有空格。

SELECT column as colmn_find 
FROM CER 
WHERE REPLACE(column, ' ', '') LIKE '%YOURTERM%';

Replace the spaces in your where clause with nothing and it will be treated as if it had no spaces in your search.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文