정렬1 쿼리에서 데이터 정렬하기 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. 이전 1 다음