| PL/SQL |
| Hello World | Michael Neumann |
BEGIN DBMS_OUTPUT.put_line('Hello World'); END; |
| Gibt "Hello World" auf dem Bildschirm
aus. |
| Squares | Michael Neumann |
DECLARE square INT; BEGIN FOR i IN 1..10 LOOP square := i * i; DBMS_OUTPUT.put_line( to_char(square) || ' ' ); END LOOP; END; |
| Gibt die Quadrate von 1 bis 10
aus. |