RIGHT() function in SQL Server
SQL Server – RIGHT ()Ā function Right():- This function returns the specified number of characters from the Right part of the […]
RIGHT() function in SQL Server Read Post Ā»
SQL Functions
SQL Server – RIGHT ()Ā function Right():- This function returns the specified number of characters from the Right part of the […]
RIGHT() function in SQL Server Read Post Ā»
LEFT() function in SQL Server Left() Function Ā This function returns the specified number of characters from the left part of
LEFT() function in SQL Server Read Post Ā»
Between function in SQL Server This function is used to select the values within a specified range. These values can
Between function in SQL Server Read Post Ā»
Convert () function in SQL Server Convert () function is used to convert an expression from oneĀ data typeĀ toĀ another data typeSyntax
SQL Server – Convert() function Read Post Ā»
Avg():- This function is used to get the average value of a numeric column Syntax:- SELECT AVG(column_name) FROM table_name
AVG() function in SQL Server Read Post Ā»
UPPER():- This function is used to convert the value of a column to upper case. Syntax: SELECT UPPER(string) OR
UPPER() function in SQL Server Read Post Ā»
LEN():- This function is used to get the length of the given string value. Syntax:- Select len (stringvalue)
LEN() function in SQL Server Read Post Ā»
LOWER():- This function is used to convert the value of a column to lower case Syntax:- Select LOWER (string)
LOWER() function in SQL Server Read Post Ā»
LTRIM ():- This function is used to get the string after the removal of leading blank spaces. Syntax:- LTRIM (
LTRIM() function in SQL Server Read Post Ā»
Substring():- This function is used to return the specified number (third argument “len”) of characters from a given string(first argument)
Substring() function in SQL Server Read Post Ā»
Max():- This function gives the maximum value of the selected column Syntax:- Select Max (col1) from table_name In this article,
Max() function in SQL Server Read Post Ā»
RTRIM():-This function is used to get the string after the removal of all trailing blanks. Syntax:- RTRIM ( character_expression )
RTRIM() function in SQL Server Read Post Ā»
Sum():- This function is used to get the sum of values of the specified numeric column. Syntax:- Select Sum (column_name)
SUM() function in SQL Server Read Post Ā»
Round():-This function is used to round a numeric field to the number of decimals specified. Syntax:- ROUND ( numeric_expression
Round() function in SQL Server Read Post Ā»
Like:- This operator is used in a WHERE clause to search for a specific pattern in the values of the
Like() function in SQL Server Read Post Ā»