开发者

How can i get Created date of a column in SQL server Table?

开发者 https://www.devze.com 2023-01-04 14:44 出处:网络
I use the following query to get information about columns of a SQL Table : SELECT * from information_schema.columns

I use the following query to get information about columns of a SQL Table :

SELECT * from information_schema.columns 
WHERE table_name = 'userpersonalinformation'

but I can't find any da开发者_如何学Pythonta about creation date for each column ... Is there any way to get creation date of a column in a table ?


I don't think that information is available in any system tables or the information schema views. I would look for that information in a source control system rather than the database.

0

精彩评论

暂无评论...
验证码 换一张
取 消