Skip to content

Instantly share code, notes, and snippets.

View DevzsJhonny's full-sized avatar
🎯
Focusing

Jhonny DevzsJhonny

🎯
Focusing
View GitHub Profile
@DevzsJhonny
DevzsJhonny / 1.sql
Last active April 26, 2022 13:37 — forked from alexjosesilva/1.sql
Bateria de Exercícios em PL-SQL
/*1. Criar um bloco PL/SQL anônimo para imprimir a tabuada abaixo:*/
DECLARE
VN CONSTANT NUMBER(2):=5;
BEGIN
FOR i IN 1..10 LOOP
SYS.DBMS_OUTPUT.PUT_LINE(VN || ' X ' || i ||'='|| VN*i);
END LOOP;
END;