You are viewing a single comment's thread. Return to all comments →
PL/SQL
BEGIN for rec IN ( select City, State from station ) Loop DBMS_OUTPUT.PUT_LINE ( rec.City || ' ' || rec.State ); END Loop; END; /
Seems like cookies are disabled on this browser, please enable them to open this website
Weather Observation Station 1
You are viewing a single comment's thread. Return to all comments →
BEGIN for rec IN ( select City, State from station ) Loop DBMS_OUTPUT.PUT_LINE ( rec.City || ' ' || rec.State ); END Loop; END; /