【Amadeus原创】查询SQL Server更改记录的语句
指定数据库,然后:
select Name,Create_date,Modify_Date from sys.objects where type in ('U','P', 'V','F', 'TR', 'FN') order by Modify_Date desc
喜欢请赞赏一下啦^_^
指定数据库,然后:
select Name,Create_date,Modify_Date from sys.objects where type in ('U','P', 'V','F', 'TR', 'FN') order by Modify_Date desc