SQL IN 条件 cakephp
假设我的数据库表中有一个列,其中包含逗号分隔值的列表,例如:
MyTable.values = a,b,c,d,e,f,etc....
如何在 cakePHP 的 find('all') 函数中构造条件来检索 MyTable.values 包含的条目,比如说“ c" 例如
谢谢
let's say I have a column in my database table that contains a list of comma-separated values like:
MyTable.values = a,b,c,d,e,f,etc....
How do I construct the condition in the find('all') function of cakePHP to retrieve the entries whose MyTable.values contain let's say "c" for example
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够使用 LIKE 运算符。百分号是通配符。
一定喜欢那个自动魔法。
编辑:找到了! 复杂查找条件页面对此有官方文档,尽管它有点埋葬了。
You should be able to use the LIKE operator. Percent-sign is a wildcard.
Gotta love that automagic.
Edit: Found it! The complex find conditions page has official documentation on this, though it's kind of buried.