[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..
[MySQL] MySQL 숫자를 문자로 변환
2022. 12. 20. 20:10
프로그래밍/SQL
MySQL 숫자를 문자로 변환 -- 숫자를 문자로 변환 CONCAT(숫자) -- 숫자를 문자로 변환한 뒤 문자열 형태로 더하기 CONCAT(숫자, 문자) -- 문자와 문자를 더하기 CONCAT(문자, 문자)