bugl
bugl
HomeLearnPatternsPathsSearchPremium
HomeLearnPatternsPaths

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

MySQL RTRIM() Function

Example

SELECT RTRIM("SQL Tutorial     ") AS RightTrimmedString;

Definition and Usage

The RTRIM() function removes trailing spaces from a string.

Syntax

RTRIM(
string
)

Parameter Values

ParameterDescription
stringRequired. The string to remove trailing spaces from

Technical Details

Works in:From MySQL 4.0

Previous

MySQL RPAD() Function

Next

MySQL SPACE() Function