SQL Server table creation date query
问题 How can I get the table creation date of a MS SQL table using a SQL query? I could not see any table physically but I can query that particular table. 回答1: For 2005 up, you can use SELECT [name] ,create_date ,modify_date FROM sys.tables I think for 2000, you need to have enabled auditing. 回答2: For SQL Server 2005 upwards: SELECT [name] AS [TableName], [create_date] AS [CreatedDate] FROM sys.tables For SQL Server 2000 upwards: SELECT so.[name] AS [TableName], so.[crdate] AS [CreatedDate] FROM