SQLite Tutorial SQLite Advanced SQLite Database SQLite References

SQLite TRIM() Function



The SQLite TRIM() function removes all specified characters either from the beginning or the end of a string.

Syntax

TRIM(string, trim_characters)

Parameters

string Required. Specify the string to trim.
trim_characters Optional. Specify characters to be trimmed from string. If omitted, spaces will be removed.

Return Value

Returns the trimmed version of the specified string.

Example 1:

The example below shows the usage of TRIM() function.

SELECT TRIM('  SQL Tutorial    ');
Result: 'SQL Tutorial'

SELECT TRIM('John1', '1');
Result: 'John'

SELECT TRIM('John123', '123');
Result: 'John'

SELECT TRIM('123John123', '123');
Result: 'John'

SELECT TRIM('xxzyTRIMxyyz', 'xyz');
Result: 'TRIM'

Example 2:

Consider a database table called Employee. When the following INSERT statements are executed, the Name column will contain records with leading and trailing spaces.

INSERT INTO Employee VALUES ('        John   ', 'London', 3000);
INSERT INTO Employee VALUES ('        Marry   ', 'New York', 2750);
INSERT INTO Employee VALUES ('      Jo    ', 'Paris', 2800);
INSERT INTO Employee VALUES ('      Kim    ', 'Amsterdam', 3100);

-- see the result
SELECT * FROM Employee;

The query will produce the following result:

NameCitySalary
        John   London3000
        Marry   New York2750
      Jo    Paris2800
      Kim    Amsterdam3100

To remove the leading and trailing spaces from the Name column of the Employee table, the following query can be used:

UPDATE Employee SET Name = TRIM(Name);

-- see the result
SELECT * FROM Employee;

This will produce the following result:

NameCitySalary
JohnLondon3000
MarryNew York2750
JoParis2800
KimAmsterdam3100

❮ SQLite Functions