일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- SVN
- HTTP
- Oracle
- MySQL
- Date and Time Functions
- Data and Time Functions
- 전자정부표준프레임워크
- Date and Time Function
- String Function and Operators
- String Functions and Operators
- 오라클
- 윈도우
- Sring Functions and Operators
- 티베로
- 방화벽
- String Functions and Date Operators
- 전자정부 표준프레임워크
- Tibero
- Today
- Total
웹이야기
[MySQL] CONCAT_WS() 본문
MySQl 문자열 함수와 연산자
CONCAT_WS()
- 문자열 이어붙이는 CONCAT() 의 특별한 형태, 구분자가 함께 한다.
CONCAT_WS(sperator, str1, str2)
의 형태
CONCAT_WS() stands for Concatenate With Sperator and is a special form of CONCAT(). The frist argument is the separator for the rest of the arguments. The separator is added between the strings to be concatenated. The sepatator can be a string, as can the rest of the arguments. If the separator is NULL, the result is NULL.
mysql> SELECT CONCAT_WS(',','First name','Second name', 'Last name');
+--------------------------------------------------------+
| CONCAT_WS(',','First name','Second name', 'Last name') |
+--------------------------------------------------------+
| First name,Second name,Last name |
+--------------------------------------------------------+
1 row in set (0.00 sec)
mysql> SELECT CONCAT_WS(',','First name',NULL, 'Last name');
+-----------------------------------------------+
| CONCAT_WS(',','First name',NULL, 'Last name') |
+-----------------------------------------------+
| First name,Last name |
+-----------------------------------------------+
1 row in set (0.00 sec)
'D > MySQL' 카테고리의 다른 글
[MySQL] EXPORT_SET() (0) | 2020.04.08 |
---|---|
[MySQL] ELT() (0) | 2020.04.08 |
[MySQL] CONCAT() (0) | 2020.04.08 |
[MySQL] CHARACTER_LENGTH() (0) | 2020.04.08 |
[MySQL] CHAR_LENGTH() (0) | 2020.04.08 |