- 存储过程插入数据
v_sql := 'select a.dictname from rc_dict_item a where a.groupid = :groupid and a.dictid = :dictid';
execute immediate v_sql into v_dictname using in in_groupid, in in_dictid;
v_sql := 'select a.dictname from rc_dict_item a where a.groupid = :groupid and a.dictid = :dictid';
execute immediate v_sql into v_dictname using in in_groupid, in in_dictid;
>