SQL Server 中带有 while 循环的用户定义函数

User defined function with while loop in SQL Server(SQL Server 中带有 while 循环的用户定义函数)
本文介绍了SQL Server 中带有 while 循环的用户定义函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我被要求在 SQL Server 中创建一个用户定义的函数以返回以下模式(例如,如果输入 = 5):

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

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

这是我的代码:

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 

当我执行函数时

select dbo.udf_star (5)

它只显示

'    *'

(4 个空格 + 1 颗星);谁能指出我应该如何更正语法?

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

提前致谢!

推荐答案

看来您可能想要一个表值函数.

It seems you may want a Table-Valued Function.

此外,应尽可能避免循环

Also, loops should be avoided when possible

示例

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
)

如果您要:

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

结果

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

这篇关于SQL Server 中带有 while 循环的用户定义函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)