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
'Computer Engineering > DB' 카테고리의 다른 글
oracle conditional expressions (case, decode) (0) | 2008.07.19 |
---|---|
Oracle General Functions (0) | 2008.07.19 |
오라클 숫자를 문자로 출력하기 (Using the TO_CHAR Function with Numbers) (0) | 2008.07.18 |
오라클 날짜 연산, 출력 포멧 (0) | 2008.07.18 |
오라클 숫자 함수 (oracle Number Functions) (0) | 2008.07.18 |
오라클 sql 쿼리 임시 변수 사용하기, UNDEFINE (Using the &, && Subsitiution Variable) (0) | 2008.07.18 |
오라클 sql 조건 비교 (Comparison Conditions ) (0) | 2008.07.18 |
오라클 quote 연산자 (oracle Alternative quote (q) Operator ) (0) | 2008.07.18 |
오라클 컨케티네이션 연산자 (Oracle Concatenation Operator ) (0) | 2008.07.18 |
오라클 Null Value 정의 (0) | 2008.07.18 |