SQL – SQL Server IIF() Function
The SQL Server IIF() function returns a value if a condition is TRUE, or another value if a condition is FALSE.
The SQL Server IIF() function returns a value if a condition is TRUE, or another value if a condition is FALSE.
The SQL Server ISDATE() function checks an expression and returns 1 if it is a valid date, and 0 if it is NOT a valid date.
The SQL Server ISNULL() function returns a specified value if the expression is NULL, and the expression itself if the expression is NOT NULL.
The SQL Server ISNUMERIC() function tests whether an expression is numeric, and returns 1 if the expression is numeric and 0 if it is not numeric.
The SQL Server LEFT() function extracts a number of characters (starting from left) from a string.
The SQL Server LEN() function returns the length of a string. Trailing spaces (after) are not included, but leading spaces (before) are included.
The SQL Server LOG() function returns the natural logarithm of a specified number, or the logarithm of the number to the specified base.
The SQL Server LOG10() function returns the natural logarithm of a number greater than 0 to base 10.
The SQL Server LTRIM() function removes leading spaces from a string. Leading spaces are spaces before (left of) the string.
The SQL Server MAX() function returns the maximum value in a set of values.
The SQL Server MIN() function returns the minimum value in a set of values.
The SQL Server MONTH() function returns the month part for a specified date (a number from 1 to 12).
The SQL Server NCHAR() function returns the Unicode character based on the number code provided.
The SQL Server NULLIF() function returns NULL if two expressions are equal, or returns the first expression if they are not equal.
The SQL Server PATINDEX() function returns the position of a pattern in a string. If the pattern is not found, this function returns 0.
The SQL Server QUOTENAME() function returns a Unicode string with delimiters added to make the string a valid SQL Server delimited identifier.
The SQL Server POWER() function returns the value of a number raised to the power of another number.
The SQL Server RADIANS() function converts a degree value (expressed as a positive or negative number) into radians.