Trim String Value in SQL Server

LTRIM and RTRIM function of SQL server helps to truncating leading and trailing blanks space respectively. If we combine both the function together, we can truncate leading and trailing blanks space of any specific word.

Example:
  1. Select LTRIM(RTRIM(' Jignesh ')) 
Output:

Jignesh