Notice
Recent Posts
Recent Comments
Link
250x250
목록substr (1)
develope_kkyu
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/b5k3OC/btrUEvzoGyy/PZ6URQFqXZyvTGffYsxbN1/img.png)
문자 함수 INICAP(char), LOWER(char), UPPER(char) inicap 함수는 매개변수로 들어오는 char의 첫 문자는 대문자로, 나머지는 소문자로 반환한는 함수이다. 첫 문자를 인식하는 기준은 공백과 알파벳을 제외한 문자이다. select initcap('good mornig') from dual; lower 함수는 매개변수로 들어오는 문자를 모두 소문자로 반환한다. select lower('Good Morning') from dual; upper 함수는 매개변수로 들어오는 문자를 모두 대문자로 반환한다. select upper('Good Morning') from dual; CONCAT(char1, char2), SUBSTR(char,pos,len), SUBSTRB(char,po..
SQL
2022. 12. 27. 17:31