오라클 함수 1
1. Character Functions ① LOWER( column|expression ) => LOWER('String') --> string : 소문자로 변환 ② UPPER( column|expression ) => UPPER('String') --> STRING : 대문자로 변환 ③ INITCAP( column|expression ) => INITCAP('string') --> String : 첫글자만 대문자이고 나머지글자는 소문자로 변환 ④ CONCAT( column1|expression1 ,column2|expression2 ) => CONCAT('Good','String') --> GoodString : ||와 같은 역할을 한다. ⑤ SUBSTR(column|expression, m [,n]..
프로그래밍/DB
2008. 12. 26. 13:10