P1-Introducció a PLSQL
De wikiserver
La revisió el 17:15, 27 oct 2014 per Jreixach (Discussió | contribucions)
1) ¿Qué bloque PL/SQL de los siguientes se ejecuta correctamente?
a) BEGIN END; b) DECLARE v_amount INTEGER(10); END; c) DECLARE BEGIN END; d) DECLARE v_amount INTEGER(10); BEGIN DBMS_OUTPUT.PUT_LINE(amount); END;
2) Cree y ejecute un bloque anónimo simple cuya salida sea “Hello World”. Ejecute y guarde este script como hello.sql.