데이터 타입
함수
대소문자 - lower, upper, initcap <- 첫글자만 대문자로
DUAL 테이블 - 더미용, 함수 연습할때 사용하자
소문자, 대문자, 앞에만 대문자로 출력하기
select lower('Chanho_lee'),
upper('chanho_lee'),
initcap('CHANHO_LEE')
from dual;
substr- (문자열,시작인덱스,가져올자리수)
concat - 결합
select substr('Chanho_lee', 8,3),
replace('ChanhoLEE','Chanho','Hoshi'),
concat('chanho','lee')
from dual;
instr - 문자열 시작 위치 리턴
lpad - 원래 문자열 좌측부터 문자열 추가
rpad - 원래 문자열 우측부터 문자열 추가
select length('2019026380'),
instr('chanholee','ho'),
lpad('chanho',9,'lee'),
rpad('chanho',9,'lee')
from dual;