Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 전자정부표준프레임워크
- Oracle
- 윈도우
- Data and Time Functions
- String Functions and Operators
- 방화벽
- 전자정부 표준프레임워크
- HTTP
- Tibero
- MySQL
- SVN
- 오라클
- Date and Time Functions
- String Function and Operators
- Sring Functions and Operators
- 티베로
- Date and Time Function
- String Functions and Date Operators
Archives
- Today
- Total
웹이야기
[MySQL] RTRIM() 본문
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