Oracle cursor也可以传入参数

Oracle cursor需要传入参数的时候,首先得在定义游标的时候设置参数,例如

curProduct(n_tem_game_id number)

这时在打开游标的时候就可以传入对应的游标了,例如:

open curProduct(1);

转载于:https://www.cnblogs.com/Vicky01200059/archive/2013/03/20/4230676.html

你可能感兴趣的:(Oracle cursor也可以传入参数)