RTRIM Function Examples | Teradata Vantage - Example 1 - Analytics Database - Teradata Vantage

SQL Functions, Expressions, and Predicates

Deployment
VantageCloud
VantageCore
Edition
Enterprise
IntelliFlex
VMware
Product
Analytics Database
Teradata Vantage
Release Number
17.20
Published
June 2022
Language
English (United States)
Last Update
2024-01-12
dita:mapPath
obm1628111499646.ditamap
dita:ditavalPath
qkf1628213546010.ditaval
dita:id
kby1472250656485
lifecycle
latest
Product Category
Teradata Vantageā„¢

The following query returns the result 'TURNERyxX'.

RTRIM removes the individual occurrences of 'x' and 'y' starting from the right side of expr1 argument, and it stops removing characters when it encounters 'X' because 'X' is not a character in the expr2 argument.

SELECT RTRIM('TURNERyxXxy','xy');
The RTRIM function removes individual occurrences of characters in expr2 argument. How these characters are arranged in expr2 argument does not impact the result.
For example, running the following query returns the same result 'TURNERyxX'.
SELECT RTRIM('TURNERyxXxy','yx');