Microsoft SQL Server: Any way to tell when a record was created?

后端 未结 5 1821
暖寄归人
暖寄归人 2021-01-11 15:14

Our customer wants to order by the record creation date. To me this seems like a system variable, some sort of meta data for the record itself.

Is there a way to te

5条回答
  •  失恋的感觉
    2021-01-11 15:53

    If he only wants to order by it, you can consider using a timestamp column.

    It cannot be related to a real-world date, but you can sort on it.

提交回复
热议问题