About 985,000 results
Open links in new tab
  1. SQL Server Functions - W3Schools

    SQL Server has many built-in functions. This reference contains string, numeric, date, conversion, and some advanced functions in SQL Server.

  2. What are the Microsoft SQL database functions? - SQL Server

    Oct 17, 2024 · SQL Server built-in functions are either deterministic or nondeterministic. Functions are deterministic when they always return the same result anytime they're called by using a …

  3. SQL Server User-defined Functions - SQL Server Tutorial

    You will learn about SQL Server user-defined functions including scalar-valued functions and table-valued functions to simplify your development.

  4. SQL Server Functions: Create, Alter, Call - TutorialsTeacher.com

    SQL Server Functions are of two types: System Functions: These are built-in functions available in every database. Some common types are Aggregate functions, Analytic functions, Ranking …

  5. SQL Server Functions

    In SQL Server, a function is a pre-written code segment that performs a specific task and returns a value. It’s essentially a set of SQL statements that you can call by name to perform an …

  6. All SQL Server Database Functions List with Examples - Total 30

    Jan 8, 2025 · Here is the list of all functions in SQL Server like aggregate, analytic, bit manipulation, ranking functions, row set, scaler, etc. These functions have plenty of sub …

  7. SQL Server: Functions - Listed by Category - TechOnTheNet

    The list of SQL Server functions is sorted into the type of function based on categories such as string, conversion, advanced, numeric/mathematical, and date/time functions. These functions …

  8. How to use SQL Server built-in functions and create user ... - SQL

    Jul 7, 2017 · There are three types of user-defined functions in SQL Server: Scalar Functions (Returns A Single Value) Inline Table Valued Functions (Contains a single TSQL statement …

  9. Scalar Function in SQL Server - GeeksforGeeks

    Feb 24, 2023 · Pre-requisites: Categories of SQL Functions In SQL Server, a scalar function is a type of user-defined function that returns a single scalar value based on the input parameters …

  10. CREATE FUNCTION (Transact-SQL) - SQL Server | Microsoft Learn

    Sep 3, 2024 · Function accesses user data in the local instance of SQL Server. Includes user-defined tables and temp tables, but not table variables. The precision and determinism …