【Oracle】动态游标的实现

  type   cur_t   is   ref   cursor;  
      c_FACT_PATI   cur_t;  
   
  v_strsql:
=‘sql语句’  
  
open   c_FACT_PATI   for   v_strsql;