如何在postgres中将字符串类型数据转换为日期格式?

时间:2014-07-01 05:26:40

标签: sql postgresql date

抱歉,我是postgres的新手。

Servlet给了我

更新:  字符串 07-Jul-2014 的形式输入。

我已使用

在My db列中插入了一些日期
 to_date('1963-09-01', 'YYYY-MM-DD')//my column is of Date type

那么我怎样才能将2014年7月7日转换为2014-06-07,以便我可以保存到我的桌子中?

1 个答案:

答案 0 :(得分:0)

试试这个:

to_date('07-Jul-2014', 'DD-Mon-YYYY'); Will return the result in Date format '2014-07-07'

2014年7月7日'是servlet中的字符串。

参考:http://www.postgresql.org/docs/current/static/functions-formatting.html