Select By ID

  • + 0 comments

    ORACLE PL/SQL:

    SET SERVEROUTPUT ON; BEGIN FOR a in (select * from city where id = 1661) LOOP DBMS_OUTPUT.PUT_LINE(a.id || ' ' || a.name || ' ' || a.countrycode || ' ' || a.district || ' '|| a.population); END LOOP; END; /