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
- 전자정부 표준프레임워크
- JSTL
- 톰캣
- 오라클
- 한글
- DB
- json
- maven
- 네이버스마트 에디터
- Oracle
- switch
- jquery
- spring form tag
- html
- MYSQL
- 날짜
- java
- php
- null
- RADIO
- 스크립트
- 호환성
- exception
- SSL
- @RequestBody
- checbox
- HTML5
- 문자열
- 웹 플랫폼 설치 관리자
- 이클립스
Archives
- Today
- Total
개인적인 정리
[Oracle] LOWER() 본문
오라클 LOWER()
LOWER()
- 문자열을 소문자로 바꿔주는 함수
LOWER(char)
의 형태
LOWER returns char, with all letters lowercase. char can be any of the data types CHAR, VARCHAR2, NCHAR, NVARCHAR2, CLOB or NCLOB. The return value is the same data type as char. The database sets the case of the chracters based on the binary mapping defined for the underlying character set. For linguistic-sensitive lowercase, refer to NLS_LOWER.
SQL > SELECT LOWER('MR. SCOTT') FROM DUAL ;
--> mr. scott
'DB > ORACLE' 카테고리의 다른 글
[Oracle] MEDIAN() (0) | 2020.04.09 |
---|---|
[Oracle] MAX() (0) | 2020.04.09 |
[Oracle] LTRIM() (0) | 2020.04.08 |
[Oracle] LPAD() (0) | 2020.04.08 |
[Oracle] LOG() (0) | 2020.04.08 |
Oracle LOCALTIMESTAMP() (0) | 2020.04.08 |
Oracle LNNVL() (0) | 2020.04.08 |
Oracle LN() (0) | 2020.04.08 |
Comments