Recursive call sample for stored procedures in SQL Server _mssql

Source: Internet
Author: User

Recursion refers to the case where the code fragment calls itself; the danger is that if you call itself once, then how to prevent him from repeatedly calling itself. This means providing a recursive test to ensure that the appropriate time to jump out.

Recursive invocation in the stored procedure, as exemplified by the class.

Recursion

CREATE PROC [dbo]. [Usp_spfactorial]
@InputValue int,
@OuputValue int OUTPUT
as
BEGIN
   DECLARE @InValue  int;
   DECLARE @OutValue  INT;
    IF (@InputValue!=1)
      BEGIN
         SET @InValue = @InputValue-1;
         EXEC spfactorial @InValue, @OutValue OUTPUT;
         SELECT @OuputValue = @InputValue * @OutValue;
      End
    ELSE
      BEGIN
      SET @OuputValue = 1;
      End End

When you create this stored procedure, you will encounter a report message

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.