String functions are used in computer programming languages to manipulate a string or query information about a string (some do both). ... The most basic example of a string function is the length(string) function. This function returns the length of a string literal.Scalar-valued UDFs are an easy way to define constant values to use in your database environment. You can pass field values as parameters into UDFs. You can nest scalar function calls. This means that you can pass a call to a scalar-valued function to another function or stored procedure.Numeric functions perform manipulation of numbers that normally are contained in a table column. ... Returns a numeric value, rounded to the specified length or precision. SIGN() SQL server, MySQL, Oracle, PostgreSQL. Returns the positive (+1), zero (0), or negative (-1) sign of a numeric expression.A stored function (also called a user function or user-defined function) is a set of PL/SQL statements you can call by name. Stored functions are very similar to procedures, except that a function returns a value to the environment in which it is called. User functions can be used as part of a SQL expression.Function must return a value but in Stored Procedure it is optional( Procedure can return zero or n values). Functions can have only input parameters for it whereas Procedures can have input/output parameters . ... Functions can be called from Procedure whereas Procedures cannot be called from Function,The CTE was introduced into standard SQL in order to simplify various classes of SQL Queries for which a derived table just wasn't suitable. ... Introduced in SQL Server 2005, the common table expression (CTE) is a temporary named result set that you can reference within a SELECT, INSERT, UPDATE, or DELETE statement.The isDate(string, string) function accepts two string arguments. It takes them, compares the first argument with the second as a pattern and, if the first string can be converted to a date which is valid within system value of locale , according to the specified pattern , the function returns true.printf does the same, treating %s as a pointer-to-string. In C, variables that are arrays become a pointer to the first element of the array when used as function arguments -- so your scanf() sees a pointer to memory (assuming "str1" is an array).
SQL - Useful Functions
SQL COUNT Function - The SQL COUNT aggregate function is used to count the number of rows in a database table.
SQL MAX Function - The SQL MAX aggregate function allows us to select the highest (maximum) value for a certain column.
More items...
SQL has many built-in functions for performing processing on string or numeric data. Following is the list of all useful SQL built-in functions −
SQL COUNT Function - The SQL COUNT aggregate function is used to count the number of rows in a database table.
SQL MAX Function - The SQL MAX aggregate function allows us to select the highest (maximum) value for a certain column.
SQL MIN Function - The SQL MIN aggregate function allows us to select the lowest (minimum) value for a certain column.
SQL - The SQL AVG aggregate function selects the average value for certain table column.
SQL SUM Function - The SQL SUM aggregate function allows selecting the total for a numeric column.
SQL SQRT Functions - This is used to generate a square root of a given number.
SQL RAND Function - This is used to generate a random number using SQL command.
SQL CONCAT Function - This is used to concatenate any string inside any SQL command.
SQL Numeric Functions - Complete list of SQL functions required to manipulate numbers in SQL.
SQL String Functions - Complete list of SQL functions required to manipulate strings in SQL.
Returns a Unicode string with the delimiters added to make the input string a valid SQL Server delimited identifier. REPLACE. Replaces a sequence of characters in a string with another set of characters. REPLICATE. Repeats a string value a specified number of times.SQL. Character Functions with Examples. Character functions accept character inputs and can return either characters or number values as output. SQL provides a number of different character datatypes which includes – CHAR, VARCHAR, VARCHAR2, LONG, RAW, and LONG RAW.Aggregate Functions: Aggregates the values and return a single value, below is the list of some aggregate values in sql server. These functions are created by user in the system database, and we have 3 types of user define functions: Scalar Function. Inline Table-Valued Function.