PostgreSQL – TRIM Function
Last Updated :
11 Nov, 2024
The TRIM() function in PostgreSQL is an essential tool for removing unwanted characters from strings. Whether we’re working with user inputs, formatting text, or performing data cleansing operations, TRIM() is an invaluable function for managing string data.
This article will provide an in-depth look at how to use the TRIM() function, including syntax, examples, and practical use cases while focusing on SEO-optimized keywords for PostgreSQL string functions and data manipulation.
PostgreSQL TRIM Function
The TRIM() function is used to remove specified characters from the start, end, or both ends of a string. By default, TRIM() removes spaces, but we can specify any character we would like to remove. This makes it highly flexible for cleaning up text and formatting data for easier manipulation or presentation.
In PostgreSQL, the TRIM() function is commonly used in scenarios like removing unnecessary spaces from user inputs, cleansing raw data before inserting it into tables, or formatting text for better readability.
Syntax
TRIM([LEADING | TRAILING | BOTH] [characters] FROM string)
Key Terms
- LEADING: Removes the specified characters from the beginning of the string.
- TRAILING: Removes characters from the end of the string.
- BOTH: Removes characters from both the beginning and end of the string.
- characters (optional): The characters you want to remove. If not specified, it removes spaces by default.
- string: The input string from which you want to remove characters.
Key Points
- Default Behavior: If no specific characters are mentioned, the
TRIM()
function removes spaces by default.
- Removing Specific Characters: You can specify a character or a set of characters to be removed.
- Trim Direction: We can specify whether to trim characters from the start (
LEADING
), end (TRAILING
), or both ends (BOTH
) of the string.
PostgreSQL TRIM Function Examples
Let us take a look at some of the examples of the TRIM() Function in PostgreSQL to better understand the concept, including various use cases such as removing spaces, leading zeros, and handling complex data formatting.
Example 1: Removing Leading, Trailing, and Both Leading and Trailing Spaces
The following statement removes leading, trailing, and both leading and trailing spaces from strings, ensuring that any unwanted white spaces are cleaned up for consistent data formatting.
Query:
SELECT
TRIM(LEADING FROM ' Geeks ForGeeks') AS leading_trimmed,
TRIM(TRAILING FROM 'Geeks ForGeeks ') AS trailing_trimmed,
TRIM(' Geeks ForGeeks ') AS both_trimmed;
Output

Explanation:
leading_trimmed
: 'Geeks ForGeeks'
(removes leading spaces)
trailing_trimmed
: 'Geeks ForGeeks'
(removes trailing spaces)
both_trimmed
: 'Geeks ForGeeks'
(removes both leading and trailing spaces)
Example 2: Removing Leading Zeros from a Number
The following statement removes the leading zero (0) from a number. As the function only accepts string values we have to use a type cast to convert the number into a string before passing it to the TRIM() function.
Query:
SELECT
TRIM(LEADING '0' FROM CAST(0009100 AS TEXT)) AS trimmed_number;
Output

Explanation:
The TRIM() function removes the leading zeros from the number string, resulting in “9100.”
Example 3: Combining TRIM() with Other String Functions
We can use TRIM() in combination with other functions like UPPER() or LOWER() to clean and format text simultaneously.
Query:
SELECT
TRIM(BOTH FROM UPPER(' PostgreSQL Database ')) AS formatted_text;
Output
formatted_text |
POSTGRESQL DATABASE |
Explanation:
This query first converts the string to uppercase and then removes spaces from both ends
Important Points About PostgreSQL TRIM() Function
- The
TRIM()
function can be combined with other string functions for more complex data manipulations. For example, combining TRIM()
with UPPER()
to trim spaces and convert a string to uppercase.
- When performing data cleansing on a large dataset, the
TRIM()
function can be used in an UPDATE
statement to clean up the data.
- When no specific character is specified, the
TRIM()
function removes white spaces by default.
- The
TRIM()
function can be used on numbers and other data types by first converting them to strings.
Conclusion
In conclusion, the TRIM() function in PostgreSQL is a powerful tool for removing unwanted characters from strings, making it an essential part of our data cleansing toolkit. Whether we’re dealing with whitespace issues, formatting text for readability, or cleaning raw data for analysis, TRIM() allows us to easily manage string data and improve our database’s integrity.
Similar Reads
PostgreSQL - TRIM Function
The TRIM() function in PostgreSQL is an essential tool for removing unwanted characters from strings. Whether we're working with user inputs, formatting text, or performing data cleansing operations, TRIM() is an invaluable function for managing string data. This article will provide an in-depth loo
4 min read
PostgreSQL - RIGHT Function
The PostgreSQL RIGHT() function, allows you to extract a specified number of characters from the right side of a string. This function can be incredibly useful for various text-processing tasks. Let us get a better understanding of the RIGHT Function in PostgreSQL from this article. SyntaxRIGHT(stri
2 min read
PostgreSQL String Functions
PostgreSQL is a powerful, open-source relational database management system that offers a rich set of functions and operators for working with string data. String manipulation is an essential task in many applications, and PostgreSQL provides a variety of built-in functions to make working with text
8 min read
PostgreSQL - Substring Function
PostgreSQL is a powerful relational database management system with extensive text processing functions, including the flexible SUBSTRING function. This function enables users to extract specific portions of a string, making it essential for text manipulation, especially when dealing with large data
4 min read
PostgreSQL - UPPER Function
In PostgreSQL, the UPPER function is utilized to convert a string into uppercase. This function is handy when you need to standardize text data by converting it to a uniform case, especially for comparison or display purposes. Let us get a better understanding of the UPPER Function in PostgreSQL fro
2 min read
PostgreSQL REVERSE() Function
The REVERSE() function in PostgreSQL is a simple yet powerful tool used to reverse the order of characters in a given string. It takes one input which is a string and returns the characters in reverse order. This function is helpful when you need to transform data, run tests or validate information.
4 min read
PostgreSQL - REPLACE() Function
PostgreSQL REPLACE() function is a powerful tool for efficient string manipulation within our database. By utilizing the REPLACE() syntax in PostgreSQL, we can easily replace specific substrings within a string and enabling us to clean, format and modify data effectively. In this article, We will le
4 min read
PostgreSQL - DATE_TRUNC Function
The PostgreSQL DATE_TRUNC() function is a powerful tool that helps us truncate a timestamp or interval to a specified level of precision. It is particularly useful when dealing with time-based data for effective data grouping and manipulation, making it ideal for reporting, analytics, and queries wh
4 min read
PostgreSQL - LAG Function
In PostgreSQL, the LAG() function is a powerful window function that allows you to access data from a previous row within the same result set. Itâs particularly useful for comparing values in the current row with values in the preceding row, making it ideal for analytical queries in PostgreSQL. For
5 min read
PostgreSQL MIN() Function
The MIN() function in PostgreSQL is an essential aggregate function that returns the minimum value in a set of values. This function is highly useful in various data analysis and reporting tasks, allowing you to quickly identify the smallest values in your datasets. Let us better understand the MIN(
2 min read