标签: sql mysql
有没有办法可以检测创建/修改存储过程的时间,所以我可以获得过去2周内已更改内容的列表?
答案 0 :(得分:2)
在mysql中检查information_schema.routines。
information_schema.routines
ROUTINE_NAME是列名
CREATED是创建日期
LAST_ALTERED是修改日期
select ROUTINE_NAME from information_schema.routines where DATEDIFF(CURDATE(),created) < 14