Tipp: 38
Bereich: DEKLARATION
Versionsinfo: RDBMS 8.x
Erstelldatum: 07.10.2019
Letzte Überarbeitung: 09.08.2024
DECLARE
dept_rec dept%ROWTYPE; -- alle Datentypen der Tabelle dept übernehmen
BEGIN
dept_rec.deptno:=10;
dept_rec.dname:='MUNICH';
--dbms_output.put_line(dept_rec); geht nicht
dbms_output.put_line(dept_rec.deptno||' '||dept_rec.dname);
END;
/