Interview Question
Qus: What is the purpose of recursive stored procedure?
Recursive stored procedure refers to a stored procedure which calls by itself until it reaches some condition. The purpose of using it is to help the programmers to use the same set of code n number of times.
Answers (2)