Netezza SQL 语法将数字 YYYYMMDD 格式转换为日期
我们有一个 Netezza 表,其中包含以数字 YYYYMMDD 格式存储的日期(例如 20090731)。
将其转换为日期格式的最佳 Netezza 语法是什么?
例如
SELECT somefunction(20090731) as NZDATE
?
We have a Netezza table that contains dates stored in a numeric YYYYMMDD format (eg 20090731).
What is the best Netezza syntax to use to convert this into date format?
eg
SELECT somefunction(20090731) as NZDATE
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以使用这个,因为它是最好的。
You can use this one as it's the best one.
将数字转换为日期的最简单方法是
Easiest way to convert number to date would be
我的努力最初因无效日期而受挫。 只要将下面的代码包装在语句中以捕获错误日期,它就可以工作。
显然
20090731
应该替换为数值变量的名称。My efforts were thwarted originally due to invalid dates. The code bellow does work as long as you wrap it in a statement to catch bad dates.
Obviously
20090731
should be replaced with the name of the numeric variable.这无需转换为 char 即可工作。
This will work without converting to char.