用于存储时区的数据类型

发布于 2024-11-06 05:21:42 字数 111 浏览 2 评论 0原文

我想存储时区,但不想存储在 timezoneoffset 数据类型中。我应该使用小数还是浮点数?或者其他什么?纽芬兰的时区可以是 GMT -3.5,印度部分地区的时区可以是 +5.5,因此 int 不起作用。

I want to store timezones but not in the timezoneoffset datatype. Should I use a decimal or a float? Or something else? Timezones can be GMT -3.5 for NewFoundland or +5.5 for parts of India so int wouldn't work.

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

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

发布评论

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

评论(1

薆情海 2024-11-13 05:21:42

为什么不使用查找表?它看起来像这样:

create table TimeZone (
    id int identity primary key,
    name varchar(50),
    offset decimal(2,1)
)

使用主表中的外键引用。

Why not use a lookup table? It would look like this:

create table TimeZone (
    id int identity primary key,
    name varchar(50),
    offset decimal(2,1)
)

With a foreign key reference from your main table.

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