Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Rails 3 中工作。我需要计算 mysql 表中的行值。
在 rails 3 我想在控制器中编写该查询。
SELECT count(*) FROM #{table_name}
那是正确的查询方法吗?
您可以使用 ActiveRecord 轻松计算表中的所有行。让我们使用 Post 作为您的表名。
@posts = Post.all @posts.count
或者像这样:
Post.all.count