How to find the creation date and time of tables in SQL Server
When you are looking for the creation date/time of certain tables, you can easily find that in sys.tables.
You can use the code below to list all tables and the creation date of those tables.
SELECT [name] AS [TableName], [create_date] AS [CreatedDate] FROM sys.tables