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
- 톰캣
- 이클립스
- exception
- MYSQL
- 호환성
- maven
- java
- RADIO
- HTML5
- 한글
- 오라클
- jquery
- @RequestBody
- 웹 플랫폼 설치 관리자
- 스크립트
- 문자열
- null
- checbox
- switch
- json
- SSL
- html
- 네이버스마트 에디터
- Oracle
- DB
- spring form tag
- php
- 전자정부 표준프레임워크
- 날짜
- JSTL
Archives
- Today
- Total
개인적인 정리
Oracle INITCAP() 본문
오라클 INITCAP()
INITCAP()
-
INITCAP(char)
의 형태
INITCAP returns char, with the first letter of each word in uppercase, all other letters in lowercase. Words are delimited by white space or characters that are not alphanumeric.
char can be of any of the data type CHAR, VARCHAR2, NCHAR, or NVARCHAR2. The return value is the same data type as char. The database set the case of the initial characters based on the binary mapping defined for the underlying character set. For linguistic-sensitive uppercase and lowercase, refer to NLS_INITCAP
This function does not support CLOB data directly. However, CLOBs can be passed in as arguments through implicit data conversion.
SQL > SELECT INITCAP('the soap') FROM DUAL ;
--> The Soap
'DB > ORACLE' 카테고리의 다른 글
ORACLE LAST_DAY() (0) | 2020.04.06 |
---|---|
ORACLE LAST() (0) | 2020.04.06 |
Oracle INSTR() (0) | 2020.04.06 |
Oracle INSERTCHILDXML() (0) | 2020.04.06 |
Oracle GROUP_ID() (0) | 2020.04.06 |
Oracle GREATEST() (0) | 2020.03.30 |
ORACLE FLOOR() (0) | 2020.03.30 |
ORACLE FIRST() (0) | 2020.03.30 |
Comments