웹이야기

[MySQL] RTRIM() 본문

D/MySQL

[MySQL] RTRIM()

yeon.Biju 2020. 4. 20. 12:22

MySQL 문자열 함수와 연산자

 

RTRIM()

   - 문자열 뒷부분의 공백 제거

 

RTRIM(str)

의 형태

 

Returns the string str with trailing space characters removed. 

 

mysql> SELECT RTRIM('abcde  '); 
+------------------+
| RTRIM('abcde  ') |
+------------------+
| abcde            |
+------------------+
1 row in set (0.00 sec)

'D > MySQL' 카테고리의 다른 글

[MySQL]SUBSTR()  (0) 2020.06.11
[MySQL]SPACE()  (0) 2020.06.11
[MySQL] RPAD()  (0) 2020.04.20
[MySQL] RIGHT()  (0) 2020.04.20
[MySQL] REVERSE()  (0) 2020.04.20
Comments