我想获取过去 5 或 6 个月内添加到特定数据库的表和存储过程。
我尝试使用以下命令,但它没有提供正确的数据。
select * from sys.objects
where type = 'U' or type = 'P'
and modify_date between '2012-09-01' and '2013-01-29'
请建议哪个命令可以给我这个列表。
我想获取过去 5 或 6 个月内添加到特定数据库的表和存储过程。
我尝试使用以下命令,但它没有提供正确的数据。
select * from sys.objects
where type = 'U' or type = 'P'
and modify_date between '2012-09-01' and '2013-01-29'
请建议哪个命令可以给我这个列表。