简体   繁体   中英

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

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 data 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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM