What is the role of Functions in SQL server ?
Ask by Anonymous User
Updated 14 Jun 2019
EXAMPLE:-
For practice only.
A (SQL) function is a database object in SQL Server. Primarily, this is a set of SQL statements that accept only input parameters, perform actions and return the result. The function can return an only a single value or a table. We can’t use a function to Insert, Update, Delete records in the database tables.