最近我将我的postgres从8.2迁移到8.4。当我运行我的应用程序并尝试 登录我收到这些错误
ERROR [JDBCExceptionReporter] ERROR: function to_date(timestamp without time zone, unknown) does not exist
我通过执行这些to_date函数检查了我的postgres
SELECT to_date(createddate,'YYYY-MM-DD') FROM product_trainings;
它给我错误函数to_date不存在
当我在postgres 8.2中执行相同的查询时,我没有收到错误
请帮我解决这些问题。
答案 0 :(得分:9)
三年后。你可以施展
SELECT
to_date(cast(createddate as TEXT),'YYYY-MM-DD')
FROM
product_trainings;
答案 1 :(得分:5)
似乎所有需要的是从时间戳到文本的转换,因为函数定义是:to_date(text,text)。
也许在8.2中,这种从时间戳到文本的转换已经预定义了。
http://www.postgresql.org/docs/8.4/static/functions-formatting.html
答案 2 :(得分:0)
甚至更整洁:
SELECT to_date(createddate::TEXT,'YYYY-MM-DD')
FROM product_trainings;