CodeIgniter 查询返回具有多个 where 条件的行数

发布于 2024-12-07 20:52:19 字数 162 浏览 0 评论 0原文

SELECT COUNT(*) AS  numrows 
FROM (books)
WHERE (
    id_status =1
    OR id_status =2
)
AND  company =2

如何将其转换为 CI Active Record?

SELECT COUNT(*) AS  numrows 
FROM (books)
WHERE (
    id_status =1
    OR id_status =2
)
AND  company =2

How can this be converted to CI Active Record?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

悲喜皆因你 2024-12-14 20:52:19
$this->db->select('count(*) as numrows')->from('books ')->where("(id_status='1' OR id_status='2') and company ='2'")
$this->db->select('count(*) as numrows')->from('books ')->where("(id_status='1' OR id_status='2') and company ='2'")
北城挽邺 2024-12-14 20:52:19

只需三个方法调用即可优雅地实现 SQL。返回的值将是 int 类型值(而不是具有 num_rows 属性的对象)。

return $this->db
    ->where('company', 2)
    ->where_in('id_status', [1, 2])
    ->count_all_results('books');

Your SQL is elegantly achieved with just three method calls. The returned value will be an int type value (not an object with a num_rows property).

return $this->db
    ->where('company', 2)
    ->where_in('id_status', [1, 2])
    ->count_all_results('books');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文