当前位置: 首页 > 知识库问答 >
问题:

带时区的时间戳,使用django ORM未知

花永昌
2023-03-14

从MariaDB转移到postgres-10后,我得到下面的错误我使用Django-orm

函数日期格式(带时区的时间戳,未知)不存在第1行:选择(日期格式(在,'%h%p')创建)为“以小时为单位”,求和(。。。

提示:没有与给定名称和参数类型匹配的函数。您可能需要添加显式类型转换。

Model.objects.filter(franchise=franchise)\
             .filter(created_at__date=date)\
             .extra(select={'in_hours': "DATE_FORMAT(created_at,'%%h %%p')"}) \
             .values('in_hours')\
             .order_by('created_at__hour')\
             .annotate(total_amount=Sum('amount'))

谁能解释一下哪里出了问题。非常感谢。

共有1个答案

赵选
2023-03-14

Postgres中没有日期\格式函数,您必须使用以\字符https://www.postgresql.org/docs/9.1/functions-formatting.html

 类似资料: