查询表的创建时间,并排序
SELECT
t.name AS TableName,
s.name AS SchemaName,
t.create_date AS CreateDate
FROM
sys.tables t
INNER JOIN
sys.schemas s ON t.schema_id = s.schema_id
ORDER BY
t.create_date DESC;
- 本文固定链接: http://www.tulading.cn/post/222
- 转载请注明: 图拉丁若微 2024年3月19日 于 图拉丁后院 发表