gpt4 book ai didi

mysql - 不像不使用 Rails 在 MySQL 中工作

转载 作者:行者123 更新时间:2023-11-29 06:23:27 28 4
gpt4 key购买 nike

>> Comment.count
SQL (0.3ms) SELECT count(*) AS count_all FROM `comments`
=> 451
>> Comment.count(:conditions => ["author_website not like ?",'aaaa'])
SQL (1.4ms) SELECT count(*) AS count_all FROM `comments` WHERE (author_website not like 'aaaa')
=> 203
>> Comment.count(:conditions => ["author_website like ?",'aaaa'])
SQL (1.2ms) SELECT count(*) AS count_all FROM `comments` WHERE (author_website like 'aaaa')
=> 0
>>

我预计 NOT LIKE 的计数为 451。

我正在使用 MySQL 和 Ruby on Rails。

最佳答案

author_website 是可为 null 的字段吗?

如果 248 行有空值,这可能可以解释。

你可以这样做吗?

Comment.count(:conditions => ["not(author_website like ?)",'aaaa'])

关于mysql - 不像不使用 Rails 在 MySQL 中工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1668702/

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