Difference between datetime and timestamp in sqlserver?(sqlserver 中日期时间和时间戳的区别?)
问题描述
Timestamp
和 Datetime
SQL Server 有什么区别?
What is the difference between Timestamp
and Datetime
SQL Server?
我认为这两种格式都能够存储日期 + 时间.那么,它们之间的区别在哪里?
I thought Both formats are capable of storing date + time. Then, Where the difference is lying between them?
但是Timestamp
不能存储日期、时间信息.
But Timestamp
is not capable of storing date, time information.
还有什么区别?
推荐答案
根据文档, timestamp
是 rowversion
的同义词 - 它是自动生成的,并且保证1是唯一的.datetime
不是 - 它只是一种处理日期和时间的数据类型,并且可以在插入等时由客户端指定.
According to the documentation, timestamp
is a synonym for rowversion
- it's automatically generated and guaranteed1 to be unique. datetime
isn't - it's just a data type which handles dates and times, and can be client-specified on insert etc.
1 当然,前提是你使用得当.查看评论.
1 Assuming you use it properly, of course. See comments.
这篇关于sqlserver 中日期时间和时间戳的区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:sqlserver 中日期时间和时间戳的区别?


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