Computer Science, asked by rakhithakur03499, 6 months ago

Write a PL/SQL code to print tables of all even numbers up to 10.​

Answers

Answered by niteshkuriyal68
1

declare

n number;

i number;

 

begin

n:=&n;

 

for i in 1..10

loop

 dbms_output.put_line(n||' x '||i||' = '||n*i);

end loop;

end;

/

Hope it helps You

Similar questions