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 | 31 |
Tags
- 방화벽
- Tibero
- 전자정부 표준프레임워크
- MySQL
- 전자정부표준프레임워크
- String Function and Operators
- Sring Functions and Operators
- String Functions and Date Operators
- HTTP
- Data and Time Functions
- SVN
- 오라클
- String Functions and Operators
- 윈도우
- Oracle
- 티베로
- Date and Time Function
- Date and Time Functions
Archives
- Today
- Total
웹이야기
[MySQL] RIGHT() 본문
MySQL 문자열 함수와 연산자
RIGHT()
- 가장 오른쪽부터 주어진 길이의 문자열을 구하는 함수
RIGHT(str, len)
의 형태
Returns the rightmost len characters from the string str, or NULL if any argument is NULL.
mysql> SELECT RIGHT('abcdef', 3);
+--------------------+
| RIGHT('abcdef', 3) |
+--------------------+
| def |
+--------------------+
1 row in set (0.00 sec)
'D > MySQL' 카테고리의 다른 글
[MySQL] RTRIM() (0) | 2020.04.20 |
---|---|
[MySQL] RPAD() (0) | 2020.04.20 |
[MySQL] REVERSE() (0) | 2020.04.20 |
[MySQL] REPLACE() (0) | 2020.04.20 |
[MySQL] REPEAT() (0) | 2020.04.20 |
Comments