• 存储过程中的top+变量


    存储过程中的TOP后跟一个变量会如何?

    Create proc getWorkPlan2
    (@intCounter int
    ,@lngUserID int)
      
    as
    select Top 5 lngWorkID,strWorkName,strExecHumanName,strBeginDate
    from worklist where lngExecHumanID= @lngUserID
    order by lngWorkID desc

      现在想将这里的Top 5 改为变量· Top @intCounter

      如下

    ALTER proc getWorkPlan2
    (@intCounter int
    ,@lngUserID int)
    as  
    exec ('select Top '+convert(varchar(10),@intCounter)+' lngWorkID,strWorkName,strExecHumanName,strBeginDate from worklist where lngExecHumanID= '
    +convert(varchar(10),@lngUserID) +' order by lngWorkID desc '

      老是提示 在关键字 'convert' 附近有语法错误。

      于是改为

    ALTER proc getWorkPlan2
    (@intCounter int
    ,@lngUserID int)
      
    as
    declare @strCounter varchar(10)
    set @strCounter=convert(varchar(10),@intCounter)
    declare @strUserID varchar(10)
    set @strUserID=convert(varchar(10),@lngUserID)
    exec ('select Top '+@strCounter+' lngWorkID,strWorkName,strExecHumanName,strBeginDate from worklist where lngExecHumanID= '
    +@strUserID +' order by lngWorkID desc '
    )

      OK!

      后来,经saucer(思归)大哥提醒,发现可以用以下语句实现:

    Alter proc getWorkPlan2
    (
    @intCounter int
    ,@lngUserID int
    )
    as
    set rowcount @intCounter
    select lngWorkID,strWorkName,strExecHumanName,strBeginDate
    from worklist where lngExecHumanID= @lngUserID
    order by lngWorkID desc
  • 相关阅读:
    TypeScript 里 interface 和 type 的区别
    TypeScript 定义函数的几种写法
    什么是 TypeScript 里的 Constructor signature
    Linux 主要的发行系统版本介绍
    PHP跨域
    26. Remove Duplicates from Sorted Array
    关于hashmap的文章
    1. Two Sum
    qt5-资源与图像
    qt--QDialogButtonBox按钮盒
  • 原文地址:https://www.cnblogs.com/521msh/p/1885094.html
Copyright © 2020-2023  润新知