Skip to content

Instantly share code, notes, and snippets.

@hashmaparraylist
Created November 13, 2013 02:05
Show Gist options
  • Save hashmaparraylist/7442379 to your computer and use it in GitHub Desktop.
Save hashmaparraylist/7442379 to your computer and use it in GitHub Desktop.
PL/SQL 返回一个数据集
CREATE OR REPLACE PROCEDURE sp_Test
(
Param1 IN OUT DATE,
RetCursor OUT SYS_REFCURSOR
)
IS
BEGIN
OPEN Export_Fx_Mid FOR
SELECT
Param1
FROM dual;
END sp_Test;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment