MySQL TRIM() Function

Clash Royale CLAN TAG#URR8PPP
googletag.cmd.push(function() googletag.display('div-gpt-ad-1422003450156-2'); );
MySQL TRIM() Function
❮ MySQL Functions
Example
Remove leading and trailing spaces from a string:
SELECT TRIM(' SQL Tutorial ') AS TrimmedString; Try it Yourself »
Definition and Usage
The TRIM() function removes leading and trailing spaces from a string.
Syntax
TRIM(string)Parameter Values
| Parameter | Description |
|---|---|
| string | Required. The string to remove leading and trailing spaces from |
Technical Details
| Works in: | From MySQL 4.0 |
|---|
❮ MySQL Functions