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 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.
精彩评论