728x90
반응형
MySQL 문자열 합치기 - concat()
concat(str1, str2, ...) 로 사용
-- 권정열(41) 로 조회
select concat(name, '(', age, ')')
from member;
MySQL 문자열 자르기 - substring()
substring(str, pos, len) 로 사용. 여기서 len은 옵션으로 설정하지 않으면 끝까지
-- Java 출력
select substring('Javascript', 1, 4);
-- Brand 출력
select substring('NoBrand', 3);
MySQL 문자열 바꾸기 - replace()
replace(str, from_str, to_str)
-- 다음주는 쉬는날이 많기에, 다음주에 여행을 갈 계획이다. 출력
select replace('다다음주는 쉬는날이 많기에, 다다음주에 여행을 갈 계획이다.', '다다음주', '다음주');
반응형
'프로그래밍 > SQL' 카테고리의 다른 글
[MySQL/JPQL] 'yyyy-MM-dd' 형식으로 조회하기 (0) | 2023.07.03 |
---|---|
[MySQL] Data truncation: Data too long for column 'XXX' at row 1 (0) | 2023.06.29 |
[MySQL] 테이블의 행의 개수 가져오기 (0) | 2023.05.12 |
[MySQL] ORDER BY 시 NULL 맨 뒤로 보내기 (0) | 2023.05.11 |
[MySQL Error] warning : Integer display width is deprecated and will be removed in a future release. 해결 방법 (0) | 2023.04.21 |