当前位置: 代码迷 >> Sql Server >> 起了别名,列名无效,该如何解决
  详细解决方案

起了别名,列名无效,该如何解决

热度:83   发布时间:2016-04-27 18:40:48.0
起了别名,列名无效
报错信息:消息 207,级别 16,状态 1,过程 pagination,第 34 行
列名 'select count(*) as Total from [' 无效。
CREATE PROCEDURE pagination 

@tblName varchar(255), -- 表名 

@strGetFields varchar(1000) = '*', -- 需要返回的列 

@fldName varchar(255)='', -- 排序的字段名 

@PageSize int = 10, -- 页尺寸 

@PageIndex int = 1, -- 页码 

@doCount bit = 0, -- 返回记录总数, 非 0 值则返回 

@OrderType bit = 0, -- 设置排序类型, 非 0 值则降序 

@strWhere varchar(1500) = '' -- 查询条件 (注意: 不要加 where) 

AS 

declare @strSQL varchar(5000) -- 主语句 

declare @strTmp varchar(110) -- 临时变量 

declare @strOrder varchar(400) -- 排序类型 

if @doCount != 0 

begin 

  if @strWhere !='' 

  set @strSQL = "select count(*) as Total from [" + @tblName + "] where "[email protected] //错误行

  else 

  set @strSQL = "select count(*) as Total from [" + @tblName + "]" 

end 

[email protected][email protected]?情况 

else 

begin 

if @OrderType != 0 

begin 

  set @strTmp = "<(select min" 

set @strOrder = " order by [" + @fldName +"] desc" 

[email protected],就执行降序,这句很重要! 

end 

else 

begin 

  set @strTmp = ">(select max" 

  set @strOrder = " order by [" + @fldName +"] asc" 

end 

if @PageIndex = 1 

begin 

  if @strWhere != ''  

  set @strSQL = "select top " + str(@PageSize) +" "[email protected]+ " from [" + @tblName + "] where " + @strWhere + " " + @strOrder 

  else 

  set @strSQL = "select top " + str(@PageSize) +" "[email protected]+ " from ["+ @tblName + "] "+ @strOrder 

--如果是第一页就执行以上代码,这样会加快执行速度 

end 

else 

begin 

[email protected] 

set @strSQL = "select top " + str(@PageSize) +" "[email protected]+ " from [" 

  + @tblName + "] where [" + @fldName + "]" + @strTmp + "(["+ @fldName + "]) from (select top " + str((@PageIndex-1)[email protected]) + " ["+ @fldName + "] from [" + @tblName + "]" + @strOrder + ") as tblTmp)"+ @strOrder 

if @strWhere != '' 

  set @strSQL = "select top " + str(@PageSize) +" "[email protected]+ " from [" 

  + @tblName + "] where [" + @fldName + "]" + @strTmp + "([" 

  + @fldName + "]) from (select top " + str((@PageIndex-1)[email protected]) + " [" 

  + @fldName + "] from [" + @tblName + "] where " + @strWhere + " " 

  + @strOrder + ") as tblTmp) and " + @strWhere + " " + @strOrder 

end 

end  

exec (@strSQL) 

GO 


------解决方案--------------------
哦买高,先把双引号(")替换成单引号('),再试。
  相关解决方案