create procedure orderProduct
(order_no in number) as
begin
select orderNo,sum(qty)
from orderDetail
where orderNo=order_no;
end;
/
警告: 创建的过程带有编译错误。