오라클3 쿼리에서 데이터 정렬하기 1. 가장 단순한 방법(속도는 운에 맞기자) select * from table_1 t1 join table_2 t2 on t1.col = t2.col order by t1.col; 2. 오라클의 힌트를 사용하기(무조건 인덱스를 탐) select /*+ index_asc(t1 table_1_idx */ * from table_1 t1 join table_2 t2 on t1.col = t2.col order by t1.col; 인덱스 탄다고 무조건 빨라지는거 아님. 2022. 5. 16. 오라클 오류 : ora-01466 ORA-01466 unable to read data - table definition has changed 오라클에서 테이블 형식이나 속성이 변경되면 flashback 이 안된다는 의미다. 순간 당황스러웠지만 알고나니 테이블에 제약조건이나 컬럼추가를 신중히 해야겠다. 2022. 5. 2. 오라클 유용한 함수 정리 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]) : m값이 음수면 .. 2018. 11. 16. 이전 1 다음