Using Trim Function in MS SQL

TRIM() function came with MS SQL Server 2017. Previously, we used to handle spaces in the variable with methods such as LTRIM, RTRIM or REPLACE.

With the TRIM() function, we can remove the leading and trailing spaces as well as the characters.

There are 2 different usage patterns. In the first, if only the variable is written inside the TRIM function, it takes the leading and trailing spaces.

SELECT TRIM(' develop ')

the result will be "develop".

The second usage is a little different. The desired characters are written in order and the value to be trimmed is specified using FROM. Typed characters are removed from the beginning and end of the value.

SELECT TRIM('.$_' FROM '$$_develop1..')

the result will be "develop1".



You May Interest

Differences Between Stored Procedure and Function in MS SQL

What is the Difference Between a Local and a Global Temporary Tab ...

Disable All Triggers in MS SQL Server Table

What is Deadlock in SQL Server ?

Finding List of Tables Using View in MS SQL