Netezza SQL 语法将数字 YYYYMMDD 格式转换为日期

发布于 2024-07-29 16:22:53 字数 188 浏览 10 评论 0原文

我们有一个 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 技术交流群。

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

发布评论

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

评论(5

壹場煙雨 2024-08-05 16:22:53

您可以使用这个,因为它是最好的。

SELECT TO_DATE('20090731','YYYYMMDD') as NZDATE

You can use this one as it's the best one.

SELECT TO_DATE('20090731','YYYYMMDD') as NZDATE
七度光 2024-08-05 16:22:53

将数字转换为日期的最简单方法是

select  date(to_char(20090731,'99999999')) as Number_As_DATE;

Easiest way to convert number to date would be

select  date(to_char(20090731,'99999999')) as Number_As_DATE;
眉黛浅 2024-08-05 16:22:53
to_date (sk_dim_time ,'YYYYMMDD')
to_date (sk_dim_time ,'YYYYMMDD')
反话 2024-08-05 16:22:53

我的努力最初因无效日期而受挫。 只要将下面的代码包装在语句中以捕获错误日期,它就可以工作。

select  to_date(substring(20090731 from 1 for 8),'YYYYMMDD') as NZDATE

显然 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.

select  to_date(substring(20090731 from 1 for 8),'YYYYMMDD') as NZDATE

Obviously 20090731 should be replaced with the name of the numeric variable.

作妖 2024-08-05 16:22:53
select to_date(20090731,'YYYYMMDD') as Number_As_DATE

这无需转换为 char 即可工作。

select to_date(20090731,'YYYYMMDD') as Number_As_DATE

This will work without converting to char.

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