파워빌더 스크립트 내에
Declare sort_1 Cursor For
select /*+ FIRST_ROWS */
distinct a.ccode_item,
b.code_item_name,
b.item_size,
b.unit,
c.car_name
from biz01.tbl_bom a,
biz01.tbl_itemcode b,
biz01.tbl_goods_car_kind c
where a.ccode_item = b.code_item
and b.car_code = c.car_code (+)
and b.item_kind <> 'I'
start with a.pcode_item = :ls_matr_code
and :ls_date between a.s_date and a.e_date
connect by prior a.ccode_item = a.pcode_item
and :ls_date between a.s_date and a.e_date
and prior b.jodal_code not in ( '11', '12', '51', '52' );
Open sort_1;
라고 적었습니다.
이럴 경우 엔터키값을 써주기 어려울 것 같은데....어찌 해야 될까요?