DateTime2 vs DateTime in SQL Server(SQL Server 中的 DateTime2 与 DateTime)
问题描述
哪个:
日期时间
datetime2
是推荐的在 SQL Server 2008+ 中存储日期和时间的方法吗?
is the recommended way to store date and time in SQL Server 2008+?
我知道精度(可能还有存储空间)的差异,但暂时忽略这些差异,是否有关于何时使用什么的最佳实践文档,或者我们应该只使用 datetime2
只有?
I'm aware of differences in precision (and storage space probably), but ignoring those for now, is there a best practice document on when to use what, or maybe we should just use datetime2
only?
推荐答案
datetime 建议使用 datetime2.这是他们的建议:
The MSDN documentation for datetime recommends using datetime2. Here is their recommendation:
使用 time
、date
、datetime2
和datetimeoffset
新数据类型工作.这些类型与 SQL标准.它们更便携.time
、datetime2
和 datetimeoffset
提供更多的秒精度.datetimeoffset
提供时区支持全球部署应用程序.
Use the
time
,date
,datetime2
anddatetimeoffset
data types for new work. These types align with the SQL Standard. They are more portable.time
,datetime2
anddatetimeoffset
provide more seconds precision.datetimeoffset
provides time zone support for globally deployed applications.
datetime2 具有更大的日期范围、更大的默认小数精度和可选的用户指定精度.此外,根据用户指定的精度,它可能会使用较少的存储空间.
datetime2 has larger date range, a larger default fractional precision, and optional user-specified precision. Also depending on the user-specified precision it may use less storage.
这篇关于SQL Server 中的 DateTime2 与 DateTime的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:SQL Server 中的 DateTime2 与 DateTime


基础教程推荐
- 从字符串 TSQL 中获取数字 2021-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- 带更新的 sqlite CTE 2022-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01