使用Pluck的Rails 5查询如何将created_at格式化为仅日期?

时间:2019-02-17 15:58:17

标签: ruby-on-rails

我有这个查询,它返回created_at datetimes行和一个值,我希望datetime只是date。我不知道如何在这种查询样式中使用任何datetime格式选项。任何帮助表示赞赏。

@channels_counts_for_history_graph = Count.where(channel_id: 
current_channel).pluck("counts.created_at", "counts.followers")

1 个答案:

答案 0 :(得分:2)

您可以使用sql命令中的日期函数

@channels_counts_for_history_graph = Count.where(channel_id: 
current_channel).pluck("date(counts.created_at)", "counts.followers")