PL/SQL Program to Print Table of a Number
Here you will get pl/sql program to print table of a given number. You can ask your queries in comment section. 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; / Output Enter value for n: 5 old 6: n:=&n; new 6: n:=5; …
