oracle存储过程返回表:

  --游标返回数据集测试
  procedure RETURN_CURSOR(p_TenantID     in number,
                          p_TravelMainID in number,
                          p_cursor       out DetCusor) is
  begin
    open p_cursor for
      select *
        from tm_traveldetail
       where traveldetailid = p_TravelMainID
         and traexpensesitemid = p_TenantID;
  end;

 

相关文章:

  • 2022-02-05
  • 2022-01-04
  • 2022-01-23
  • 2022-12-23
  • 2022-02-09
  • 2022-12-23
  • 2022-02-07
  • 2022-02-07
猜你喜欢
  • 2022-12-23
  • 2021-12-23
  • 2022-02-20
  • 2022-12-23
  • 2022-12-23
  • 2021-12-08
  • 2022-12-23
相关资源
相似解决方案