What is the practical use of timestamp column in sql server with example?

后端 未结 3 2031
时光说笑
时光说笑 2021-02-01 02:15

I came across the timestamp datatype in sql server.What is the practical use of timestamp column in sql server with example?

3条回答
  •  一整个雨季
    2021-02-01 02:32

    I have used the timestamp column to keep track of when data changes, specifically data that needs to be synced to one or more mobile applications. You can use the timestamp column to just give return the rows that have changed since a point in time (by providing the previous timestamp).

提交回复
热议问题