Get all function from table in sql server



You can find your function from your database, just this query

 
SELECT ROUTINE_NAME FROM information_schema.routines WHERE routine_type = 'function'
 
Example :
 
 

0 Comment's

Comment Form

Submit Comment