PostgreSql +日期格式 将 YYYY-MM-DD 转换为日、日期月年

发布于 2024-10-05 00:15:52 字数 446 浏览 1 评论 0原文

假设我将此格式存储在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梅倚清风 2024-10-12 00:15:52
SELECT 
  * 
FROM 
  table_name 
WHERE 
  user_id=('11') 
AND 
  to_char(effective_date, 'Dy, Mon DD, YY') = trim('Fri, Nov 26, 10');
SELECT 
  * 
FROM 
  table_name 
WHERE 
  user_id=('11') 
AND 
  to_char(effective_date, 'Dy, Mon DD, YY') = trim('Fri, Nov 26, 10');
舟遥客 2024-10-12 00:15:52

这应该可以做到: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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文