If you also need a circuit:
SELECT CONCAT(ic.TABLE_SCHEMA, '.', st.name) as TableName ,st.create_date ,st.modify_date FROM sys.tables st JOIN INFORMATION_SCHEMA.COLUMNS ic ON ic.TABLE_NAME = st.name GROUP BY ic.TABLE_SCHEMA, st.name, st.create_date, st.modify_date ORDER BY st.create_date
jadki May 29 '18 at 18:24 2018-05-29 18:24
source share