Query to find the list of Functions in SQL Server
[sql]
SELECT name FROM sys.objects
WHERE type IN (‘AF ‘,’FN’, ‘IF’, ‘TF’, ‘FS’, ‘FT’)
[/sql]
LEARN SQL SERVER ONLINE
Query to find the list of Functions in SQL Server
[sql]
SELECT name FROM sys.objects
WHERE type IN (‘AF ‘,’FN’, ‘IF’, ‘TF’, ‘FS’, ‘FT’)
[/sql]