用于存储时区的数据类型
我想存储时区,但不想存储在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不使用查找表?它看起来像这样:
使用主表中的外键引用。
Why not use a lookup table? It would look like this:
With a foreign key reference from your main table.