- 해당 필드에 숫자만 있는 경우


ORDER BY TO_NUMBER(FIELD);


- 해당 필드에 숫자 이외의 값도 있는 경우


ORDER BY LPAD(FIELD, 10);
// 10 == FIELD.length


 
 출처 :
http://www.techonthenet.com/oracle/questions/sort1.php






http://hangaebal.blogspot.kr/2014/11/sql-varchar-sort-varchar2-field-as.html

+ Recent posts