Oracle 日期转换
如何更改日期格式,例如,数据库中的数据作为输入表示 01-jan-10,但如何获得输出为 01-jan-2010。有一些日期是 01-dec-99,应表示为 01-dec-1999.. 如何做到这一点?
谢谢
how to change the date format for example, the data in the database as input represent, 01-jan-10 but how do i get an output as 01-jan-2010. And there are some dates which are 01-dec-99, which are to be represented as 01-dec-1999.. How can this be done?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 TO_CHAR 进行日期格式,例如:
TO_CHAR(, 'DD-MON-RRRR')
例如:
You can date format with TO_CHAR like :
TO_CHAR(<YOUR_DATE_COLUMN>, 'DD-MON-RRRR')
e.g: