- FUNCTION (Function) in SQL Server

the function in sql server is stored in the database so you can pass the parameters as well as return the values. the article will give you the syntax and examples of how to create and delete functions in sql server.
- SUM function in SQL Server

the sql server sum function returns the total value of a column, a data set, or an expression.
- The wctomb () function in C

the function int wctomb (char * str, wchar) converts the wide char into its multi-byte representation and stores it at the beginning of the character array pointed to by str.
- The strrchr () function in C

char * strrchr (const char * str, int c) looks for the last occurrence of the character c (an unsigned char) in the string pointed to by parameter str.
- Strcpy () function in C

char * strcpy function (char * dest, const char * src) copies the string pointed to by src to dest.
- The sprintf () function in C

the int sprintf function (char * str, const char * format, ...) in the standard c library sends the formatted output to a string str.
- AVG function in SQL Server

the avg function in sql server returns the average value of an expression or average value according to the specified column of the selected row.
- ABS function in SQL Server

this article will show you in detail how to use the abs () handling function in sql server with specific syntax and examples to better visualize and capture functions.
- DATEPART function in SQL Server

the datepart function in sql server returns a time value of the input argument, which can be day, month, year, quarter, hour, minute, second, millisecond ... the return value is an integer type (int)
- The function sscanf () in C

the function int sscanf (const char * str, const char * format, ...) in library c standard reads the input formatted from a string.