如何在 PL/SQL 中将日期(第 331 天)转换为 yyyymmdd?
如果我知道一年中的日期是 331,如何在 PL/SQL 中将其转换为 yyyymmdd?
If I know the number of the day is 331 within the year, how do I convert it into yyyymmdd in PL/SQL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
转换为 DATE:
如果需要,您可以使用 TO_CHAR 格式化该日期。
To convert to a DATE:
You can then format that date if required using TO_CHAR.
另一种选择可能是这样的。
Another option could be something like this.