AdBlock Detected!
Our website is made possible by displaying ads to our visitors. Please supporting us by whitelisting our website.
SQL Trim Function |
SQL > SQL String Functions >
Trim
The TRIM function in SQL is used to remove a specified prefix or suffix from a string. The most common pattern being removed is the white space. This function is called differently in different databases:
SyntaxThe syntax for the TRIM function is as follows: TRIM( [ [LOCATION] [remstr] FROM ] str)
[LOCATION] can be either LEADING, TRAILING, or BOTH. This function gets rid of the [remstr] pattern from either the beginning of the string or the end of the string, or both. If no [remstr] is specified, white spaces are removed. The syntax for the LTRIM function is as follows: LTRIM (str)
LTRIM removes all white spaces from the beginning of the string. The syntax for the RTRIM function is as follows: RTRIM (str)
RTRIM removes all white spaces at the end of the string. ExamplesExample 1: TRIM functionSELECT TRIM(' Sample ');
Result: 'Sample'
Example 2: LTRIM functionSELECT LTRIM(' Sample ');
Result: 'Sample '
Example 3: RTRIM functionSELECT RTRIM(' Sample ');
Result: ' Sample'
|
Our website is made possible by displaying ads to our visitors. Please supporting us by whitelisting our website.