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
- Sring Functions and Operators
- String Functions and Operators
- Date and Time Functions
- MySQL
- SVN
- 전자정부표준프레임워크
- 전자정부 표준프레임워크
- 티베로
- 윈도우
- Date and Time Function
- Tibero
- Data and Time Functions
- 오라클
- 방화벽
- String Function and Operators
- String Functions and Date Operators
- Oracle
- HTTP
Archives
- Today
- Total
웹이야기
[MySQL] REPEAT() 본문
MySQL 문자열 함수와 연산자
REPEAT()
- 문자열 반복
REPEAT(str, count)
의 형태
Returns a string consisting of the string str repeated count times. If count is less than 1, returns an empty string. Returns NULL if str or count are NULL.
mysql> SELECT REPEAT('오늘은', 5);
+-----------------------------------------------+
| REPEAT('오늘은', 5) |
+-----------------------------------------------+
| 오늘은오늘은오늘은오늘은오늘은 |
+-----------------------------------------------+
1 row in set (0.00 sec)
'D > MySQL' 카테고리의 다른 글
[MySQL] REVERSE() (0) | 2020.04.20 |
---|---|
[MySQL] REPLACE() (0) | 2020.04.20 |
[MySQL] QUOTE() (0) | 2020.04.20 |
[MySQL] POSITION() (0) | 2020.04.20 |
[MySQL] ORD() (0) | 2020.04.14 |
Comments