sqlserver快速查找所有存储过程中是否包含某字符

2025-03-23 00:00:31
推荐回答(1个)
回答1:

select * from sys.sql_modules a where charindex('要查找的字符',a.definition)>0