SQL Server – RIGHT () function Right():- This function returns the specified number of characters from the Right part of the
Continue readingCategory: SQL Functions
SQL Functions
LEFT() function in SQL Server
LEFT() function in SQL Server Left() Function This function returns the specified number of characters from the left part of
Continue readingBetween function in SQL Server
Between function in SQL Server This function is used to select the values within a specified range. These values can
Continue readingSQL Server – Convert() function
Convert () function in SQL Server Convert () function is used to convert an expression from one data type to another data typeSyntax
Continue readingAVG() function in SQL Server
Avg():- This function is used to get the average value of a numeric column Syntax:- SELECT AVG(column_name) FROM table_name
Continue readingUPPER() function in SQL Server
UPPER():- This function is used to convert the value of a column to upper case. Syntax: SELECT UPPER(string) OR
Continue readingLEN() function in SQL Server
LEN():- This function is used to get the length of the given string value. Syntax:- Select len (stringvalue)
Continue readingLOWER() function in SQL Server
LOWER():- This function is used to convert the value of a column to lower case Syntax:- Select LOWER (string)
Continue readingLTRIM() function in SQL Server
LTRIM ():- This function is used to get the string after the removal of leading blank spaces. Syntax:- LTRIM (
Continue readingSubstring() function in SQL Server
Substring():- This function is used to return the specified number (third argument “len”) of characters from a given string(first argument)
Continue reading