标签: postgresql activerecord ruby-on-rails-5 jsonb
我有一个Post模型,其列由以下迁移定义:
Post
add_column :posts, :comments, :jsonb, default: [] add_index :posts, :comments, using: :gin
我想知道要运行的查询,以便计算所有Posts的默认空数组为comments。
Posts
comments
答案 0 :(得分:3)
Post.where("comments = '[]'").count