SQL 함수 (단일행 함수, 복수행 함수 2가지가 있다.) 단일행 함수의 종류 대소문자 변환함수(문자함수) 종류 의미 사용예 INITCAP 문자열의 첫 번째 문자만 대문자로 변환 INITCAP(student) -> Student LOWER 문자열 전체를 소문자로 변환 LOWER(ABC) -> abc UPPER 문자열 전체를 대문자로 변환 UPPER(abc) -> ABC 1 select lower(userid) as "User ID" 2 from student 3* where studno=20101 SQL> / User ID ---------- dals 1 select upper(userid) as "User ID" 2 from student 3* where studno=20101 SQL> / User I..