如何得到SQL表的生成时间?
如题,如何得到SQL表的生成时间?
[最优解释]
select name,create_date from sys.tables where object_id=OBJECT_ID('你的表的名字')
[其他解释]
select * from sys.tables
[其他解释]
明白了,谢谢!
发布时间: 2012-12-14 10:33:08 作者: rapoo
如何得到SQL表的生成时间?
如题,如何得到SQL表的生成时间?
[最优解释]
select name,create_date from sys.tables where object_id=OBJECT_ID('你的表的名字')
select * from sys.tables