在Django查询值中格式化时间戳

时间:2018-02-09 09:33:51

标签: sql django group-by django-queryset

我正在尝试使用Dajngo QuerySet,我必须在GROUP BY time_stamp::date 中格式化time_stamp字段。

在PostgreSql中,我可以点这样:

SELECT avg(field) FROM table GROUP BY time_stamp::date 

我必须这样做,因为在日期列中格式( 2018-01-22 00:00:28 + 01 )也显示时间,我想知道仅归档的平均值在一天。

所以我的主要问题是如何在Django中创建一个与此PostgreSQL查询相同的查询。

{{1}}

1 个答案:

答案 0 :(得分:0)

基于that answer

 <ClientSideEvents CustomButtonClick="CustomButtonClickMSQQ" CallbackError="function(s, e) { OnCallbackErr('msgUser', e); }" />
            <Columns>
                <dx:GridViewCommandColumn Name="CommandButtons" ButtonType="Image" VisibleIndex="0"
                    ShowClearFilterButton="true" ShowEditButton="false" ShowDeleteButton="false"
                    ShowNewButton="false">
                    <CustomButtons>
                        <dx:GridViewCommandColumnCustomButton ID="btnInsertMI" Text="Выбрать СИ к Блоку"
                            Image-AlternateText="Добавить СИ к заявке" Image-SpriteProperties-CssClass="spr_folder_add12" />
                    </CustomButtons>

这就是你想要的吗? order_by不是必需的