MySQL TRIM()関数
例
文字列から先頭と末尾のスペースを削除します。
SELECT TRIM(' SQL Tutorial ') AS TrimmedString;
定義と使用法
TRIM()関数は、文字列から先頭と末尾のスペースを削除します。
構文
TRIM(string)
パラメータ値
Parameter | Description |
---|---|
string | Required. The string to remove leading and trailing spaces from |
技術的な詳細
で動作します: | MySQL4.0から |
---|