Is TimeStamp column unique?

后端 未结 3 1708
别跟我提以往
别跟我提以往 2021-01-18 07:07

Is TimeStamp unique in all rows?

Does it have a unique index on it?

3条回答
  •  失恋的感觉
    2021-01-18 07:41

    timestamp is a data type that exposes automatically generated binary numbers, which are guaranteed to be unique within a database. timestamp is used typically as a mechanism for version-stamping table rows. The storage size is 8 bytes.


    For more info, check THIS article.

提交回复
热议问题