0
I have this PL-SQL code:
/*1. Criar um bloco PL/SQL anônimo para imprimir a tabuada abaixo:*/
DECLARE
VN CONSTANT NUMBER(2) := 5;
BEGIN
FOR i IN 1..1O LOOP
DBMS_OUTPUT.PUT_(VN || ' X ' || i ||'='|| VN*i);
END LOOP;
END;
Error message
Error report - ORA-06550: row 4, column 18: PLS-00103: Found the "O" symbol when one of the following symbols was expected:
- & - + / loop mod reminder rem ||
Multiset The "*" symbol has been replaced by "O" to continue.
- 00000 - "line %s, column %s: n%s" *Cause: Usually a PL/SQL Compilation error. *Action:
1..1O
<- Would not be a zero ? Instead of The ?– NoobSaibot
OPS...thanks!!! ... must be the tiredness...I will sleep!
– alexjosesilva