我正在尝试检索数据库完整性的简单统计信息。考虑到未输入的字段中包含“null”或“”,我想知道每条记录填写的字段总数中有多少字段。
以下是现有代码的样子:
<% if @products %>
<% total_attribute_count = Product.columns.size %>
<% @products do |product| -%>
<p><%= platform.name %></p>
<p>I would like to have here a number of attributes filled in, so I could calculate a percentage based on total_attribute_count</p>
<% end -%>
<% end %>