我有这个查询,它返回created_at datetimes行和一个值,我希望datetime只是date。我不知道如何在这种查询样式中使用任何datetime格式选项。任何帮助表示赞赏。
@channels_counts_for_history_graph = Count.where(channel_id:
current_channel).pluck("counts.created_at", "counts.followers")
答案 0 :(得分:2)
您可以使用sql命令中的日期函数
@channels_counts_for_history_graph = Count.where(channel_id:
current_channel).pluck("date(counts.created_at)", "counts.followers")