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('다다음주는 쉬는날이 많기에, 다다음주에 여행을 갈 계획이다.', '다다음주', '다음주');
반응형
복사했습니다!