[MySQL] ROW 문자열 합치기 (GROUP_CONCAT)
2023. 9. 7. 20:12
프로그래밍/SQL
GROUP_CONCAT GROUP BY 로 문자열을 합치는 경우 사용 기본형 GROUP_CONCAT(필드명) 구분자 변경 GROUP_CONCAT(필드명 SEPARATOR '구분자') 중복 제거 GROUP_CONCAT(DISTINCT 필드명) 문자열 정렬 GROUP_CONCAT(필드명 ORDER BY 필드명) 참고 자료 : https://fruitdev.tistory.com/16
[MySQL] 문자열 합치기, 문자열 자르기, 문자열 바꾸기
2023. 6. 9. 20:29
프로그래밍/SQL
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..