SQL IN 条件 cakephp

发布于 2025-01-06 06:32:41 字数 188 浏览 0 评论 0原文

假设我的数据库表中有一个列,其中包含逗号分隔值的列表,例如:

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 技术交流群。

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

发布评论

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

评论(1

黎夕旧梦 2025-01-13 06:32:41

您应该能够使用 LIKE 运算符。百分号是通配符。

<?php

$this->Model->find("all", array(
    "conditions" => array("Model.field LIKE" => "%c%")
));
?>

一定喜欢那个自动魔法。

编辑:找到了! 复杂查找条件页面对此有官方文档,尽管它有点埋葬了。

You should be able to use the LIKE operator. Percent-sign is a wildcard.

<?php

$this->Model->find("all", array(
    "conditions" => array("Model.field LIKE" => "%c%")
));
?>

Gotta love that automagic.

Edit: Found it! The complex find conditions page has official documentation on this, though it's kind of buried.

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