SQL Interview Questions and Answers

sql interview questions and answers

SQL Interview Questions and Answers Question: What is recursive stored procedure in Oracle PL/SQL ? Answer:  Recursive PL/SQL stored procedure in Oracle means a stored procedure which calls by itself until it reaches some boundary condition. Example: create or replace procedure fact ( x in number, f out number ) as Begin if x = …

Read more