User defined function with while loop in SQL Server

落爺英雄遲暮 提交于 2020-04-17 22:45:32

问题


I am asked to create a user defined function in SQL Server to returns the following pattern (for example, if the input = 5):

*****
 ****
  ***
   **
    *

Here is my code:

alter function udf_star (@input int)
returns varchar (200)
as 
begin 
    declare @star int 
    set @star = @input 

    declare @space int 
    set @space = 0

    while @star > 0
    begin 
        declare @string varchar (200)
        set @string = replicate (' ', @space) + replicate ('*', @star)

        set @star = @star - 1
        set @space = @space + 1  
    end 

    return @string 
end 

When I execute the function

select dbo.udf_star (5)

it only shows

'    *'

(4 spaces + 1 star); can anyone points out how should I correct the syntax?

Thanks in advance!


回答1:


It seems you may want a Table-Valued Function.

Also, loops should be avoided when possible

Example

CREATE FUNCTION [dbo].[tvf-Star] (@Input int)
Returns Table 
As
Return (  

Select Top (@Input) 
       Stars = replicate(' ',@Input-N)+replicate('*',N)
 From ( Select Top (@Input) N=Row_Number() Over (Order By (Select NULL)) From master..spt_values n1 ) A
 Order By N Desc
)

If you were to :

Select * from [dbo].[tvf-Star](5)

The Results

Stars
*****
 ****
  ***
   **
    *


来源:https://stackoverflow.com/questions/61125707/user-defined-function-with-while-loop-in-sql-server

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!