What is difference between datetime and timestamp

前端 未结 4 1479
暗喜
暗喜 2020-11-29 08:42

What is difference between datetime and timestamp datatype in Sql Server?.

相关标签:
4条回答
  • 2020-11-29 09:23

    Normally time-stamp used when ever you inserted new record into database automatically system would take default date time ex : transaction like bank deposit or with draw

    data-time datatype used at the movement of inserting the user defined date into the record ex : date of birth

    0 讨论(0)
  • 2020-11-29 09:31

    Timestamp (deprecated synonym for rowversion) :

    Is a data type that exposes automatically generated, unique binary numbers within a database. rowversion is generally used as a mechanism for version-stamping table rows. The storage size is 8 bytes. The rowversion data type is just an incrementing number and does not preserve a date or a time. To record a date or time, use a datetime2 data type.

    http://msdn.microsoft.com/en-us/library/ms182776.aspx

    0 讨论(0)
  • 2020-11-29 09:36

    timestamp is the synonym for the rowversion data type and is subject to the behavior of data type synonyms. In DDL statements, use rowversion instead of timestamp wherever possible. In simple way to tell, It means the updating time of row. datetime means the time of creation of row. DateTime is constant and other is changeable as the real time and local time.

    0 讨论(0)
  • 2020-11-29 09:45

    One is a date and time, the other is a column type that is updated every time a row is updated.

    [Note timestamp is being deprecated; use rowversion instead]

    0 讨论(0)
提交回复
热议问题