gpt4 book ai didi

php - 如果字段内容是搜索字符串的一部分,mysql如何设置 "where"条件?

转载 作者:行者123 更新时间:2023-11-29 06:49:01 24 4
gpt4 key购买 nike

我有一个 mysql 表mytable,其结构和记录如下:

| id |    url       |
|----|--------------|
| 1 | article/read |

我有搜索字符串,例如

'article/read/1/',
'article/read/about',
'article/read/tag/2'
etc..

如果任何字符串包含 url 记录 article/read,则返回该行。

如何编写 MYSQL 查询字符串?

提前非常感谢!

最佳答案

您可以使用LIKE运算符

SELECT * FROM mytable WHERE `url` LIKE 'article/read%'

关于php - 如果字段内容是搜索字符串的一部分,mysql如何设置 "where"条件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48256492/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com