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 | 31 |
Tags
- MVC
- 클라우드
- 백준
- Kafka
- Spring Cloud
- 데이터베이스
- Spring Boot
- aws
- golang
- 오라클
- 알고리즘
- JPA
- 디자인 패턴
- Spring
- Jenkins
- feign
- 자료구조
- 페이징
- DP
- Intellj
- 쿼리
- 코딩
- 운영체제
- SQL
- retry
- Spring Cloud Feign
- MST
- db
- PL/SQL
- 자바
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