一天中的时间维度

发布于 2024-12-10 07:06:24 字数 33 浏览 0 评论 0原文

如何构建一个时间维度表来保存小时、分钟、秒等详细信息

How can I build a time-of-the-day dimension table which holds granular information for hours, minutes, seconds and such information

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

孤单情人 2024-12-17 07:06:24

我很好奇为什么您需要 TIME 维度,因为可以轻松地从 TIMESTAMP 或 TIME 数据类型本身的 TIME 部分提取此信息。话虽如此,您可以创建一个表DIM_TIME(时间、小时、分钟、秒)。然后,您必须用 86400 个值填充它,其中包含 24 小时内每秒的记录。

I'm curious why you would want a TIME dimension when this information can easily be extracted from the TIME portion of a TIMESTAMP or TIME data type itself. Having said that you could create a table DIM_TIME (Time, Hour, Minute, Seconds). You would then have to populate it with 86400 values containing a record for each second within a 24 hour period.

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