PostgreSql +日期格式 将 YYYY-MM-DD 转换为日、日期月年
假设我将此格式存储在我的 postgre 数据库表中。现在我必须将此日期与包含不同格式的日期的文本框值之一进行比较。
Database Date Format :: YYYY-MM-DD For example :: 2010-11-26
Text-Field Date Format :: Day, Month Date, Year :: Fri, Nov 26, 10
现在我尝试比较这个值,但没有任何回应,请建议。
Select * from table_name where user_id=('11')
and to_char(effective_date, $$$$$$$$)=trim('Fri, Nov 26, 10');
现在请建议我应该使用哪种格式来代替 $$$$$$$$ ???
谢谢 !!!
Suppose I am storing this format in my postgre database table. Now I have to compare this date with one of the texbox value contain date in different format.
Database Date Format :: YYYY-MM-DD For example :: 2010-11-26
Text-Field Date Format :: Day, Month Date, Year :: Fri, Nov 26, 10
Now I have tried to compare this value but no response Plz suggest.
Select * from table_name where user_id=('11')
and to_char(effective_date, $$$$)=trim('Fri, Nov 26, 10');
Now Plz suggest which format should I use in place of $$$$$$$$ ???
Thanks !!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该可以做到:
to_char( effective_date, 'Dy, Mon DD, YY')
顺便说一句:这全部记录在手册中:
http://www.postgresql.org/docs/current/static/functions -formatting.html
This should do it:
to_char(effective_date, 'Dy, Mon DD, YY')
Btw: this is all documented in the manual:
http://www.postgresql.org/docs/current/static/functions-formatting.html