Esempi sulle collezioni e i record

This commit is contained in:
Fabio Scotto di Santolo
2019-09-25 21:13:58 +02:00
parent 330aa77609
commit 585372ff49
7 changed files with 405 additions and 0 deletions

19
record/RECORD_1.sql Normal file
View File

@@ -0,0 +1,19 @@
-- Esempio di Table Based Record
DECLARE
ARTICOLO_REC ARTICOLI%ROWTYPE;
BEGIN
SELECT
*
INTO
ARTICOLO_REC
FROM
ARTICOLI
WHERE
CODART = '001122501';
DBMS_OUTPUT.PUT_LINE ('Codice: '||ARTICOLO_REC.CODART);
DBMS_OUTPUT.PUT_LINE ('Descrizione: '||ARTICOLO_REC.DESCRIZIONE);
DBMS_OUTPUT.PUT_LINE ('Pezzi x Cartone: '||ARTICOLO_REC.PZCART);
END;