Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- db
- DP
- 자료구조
- retry
- 데이터베이스
- Intellj
- JPA
- 코딩
- Kafka
- 백준
- 디자인 패턴
- MST
- SQL
- golang
- 자바
- Spring Cloud
- 오라클
- MVC
- Spring Boot
- 페이징
- PL/SQL
- Spring Cloud Feign
- Jenkins
- Spring
- 알고리즘
- 클라우드
- aws
- feign
- 쿼리
- 운영체제
Archives
- Today
- Total
목록함수 (1)
justgo_developer
오라클 기본함수 : 문자함수
오라클 기본함수 : 문자함수 ■ concat(char1, char2)select concat('Hello', 'bye'), concat('good', 'bad') from dual;: 문자열 합치기 -> Hellobye, goodbad 반환= select 'good' || 'bad' from dual; ■ initcap(char)select initcap('good morning') from dual;: 첫문자를 대문자로 변경 -> Good Morning 반환 select initcap('good/bad morning') from dual;-> Good/Bad Morning 반환 ■ lower(char) / upper(char)select lower('GOOD') from dual;: 소문자로 변경 ->..
IT/Oracle
2018. 9. 26. 15:45