안녕하세요~
오라클 입문자입니다~
오라클 기능중에 마지막 앞의 데이터를 가져오는 명령어가 있나요??
select gongj_seq
from mftb010tb
where plan_yymm = is_plan_yymm (년월)
and order_no = ls_order_no (주문번호)
and order_ln_no = ls_order_ln_no (주문행번)
and gongj_seq = (select max(gongj_seq)
from mftb010tb
where plan_yymm = is_plan_yymm
and order_no = ls_order_no
and order_ln_no = ls_order_ln_no)
gongj_seq은 공정번호인데 1번부터 마지막 번호는 무작위로 들어가며 마지막 공정이 4라면
1,2,3,4가 존재합니다.
위의 sql로 마지막 번호를 추출하여 프로그램에서 공정번호에서 1을 빼서 가져오게 만들었는데요...
오라클자체에서 마지막 앞번호를 가져오는 기능이 있는지 해서 올려봅니다.
감사합니다~ ^^
|