본문 바로가기

Computer Engineering/DB

오라클 캐릭터 조작 함수 (Oracle Character-Manipulation Functions)

Function Result
CONCAT('Hello','World') HelloWorld
SUBSTR('HelloWorld',1,5) Hello
LENGTH('HelloWorld') 10
INSTR('HelloWorld','W') 6
LPAD(salary,10,'*') *****24000
RPAD(salary,10,'*') 24000*****
REPLACE('JACK and JUE','J','BL') BLACK and BLUE
TRIM('H' FROM 'HelloWorld') elloWorld



출처 : 오라클 공인 교재 WQL Fundamentals 3-11