Quantcast
Channel: T-SQL Code Examples – SQLSERVERLEARNER
Viewing all articles
Browse latest Browse all 27

How to Find the List of Functions in SQL Server

$
0
0

Query to find the list of Functions in SQL Server

SELECT name FROM sys.objects 
WHERE type IN ('AF ','FN', 'IF', 'TF', 'FS', 'FT')

Viewing all articles
Browse latest Browse all 27

Trending Articles