Created
November 13, 2013 02:05
-
-
Save hashmaparraylist/7442379 to your computer and use it in GitHub Desktop.
PL/SQL 返回一个数据集
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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