sql - ORA-01722: invalid number PLSQL IMPLICIT CURSOR -
begin v_region_rec in (select region_name, c.country_name regions r join countries c on r.region_id = c.country_id) loop dbms_output.put_line (v_region_rec.region_name || ' | ' || v_region_rec.country_name ); end loop; end; ran plsql statement can't tell why giving me ora-01722: invalid number
Comments
Post a Comment