I am trying to select certain stored procedures within my database.
What I want is all stored procedures that start with Get_
but I cannot get proper results. It seems to ignore the _
for some reason. Running SQL Server 2019 developer version.
Here is my code:
select *
from information_schema.routines
where routine_type = 'PROCEDURE' and specific_name like 'Get_%'