SQL server2008使用存储过程中遇到了一个问题。
ALTERproc[dbo].[user_xianshi]@biaovarchar(50),--表名@sqlvarchar(max),@PageIndexint=1--显...
ALTER proc [dbo].[user_xianshi]
@biao varchar(50),--表名
@sql varchar(max),
@PageIndex int =1 --显示的页数
as
declare @PageCount int =5 --控制显示的行数
begin
if @sql!=''
begin
set @biao=@biao+' '+@sql;--表名加判断条件
end
exec('
with TableX
as ( select row_number()over(order by [id] ASC) as xh,* from '+@biao+')
select * from TableX where xh between ('+@pageindex+'-1)*'+@pageCount+'+1 and '+@pageindex+'*'+@pageCount+'')
end;
这个是我写的一个存储过程,
@biao=where 1=1 and parentID=1 and shouHuoDiZhi='1'出错
消息 102,级别 15,状态 1,第 3 行
')' 附近有语法错误。
@biao=where 1=1 and userName='1' and shouHuoDiZhi='1'出错
消息 4145,级别 15,状态 1,第 3 行
在应使用条件的上下文(在 ')' 附近)中指定了非布尔类型的表达式。
@biao=where 1=1 and parentID=1 and dengLuCiShu=1 and userName='1'不出错
@biao=where 1=1 and parentID=1 and userName='1'不出错
@biao=where 1=1 and userName='1' 不出错
求大神指教怎么改啊。 展开
@biao varchar(50),--表名
@sql varchar(max),
@PageIndex int =1 --显示的页数
as
declare @PageCount int =5 --控制显示的行数
begin
if @sql!=''
begin
set @biao=@biao+' '+@sql;--表名加判断条件
end
exec('
with TableX
as ( select row_number()over(order by [id] ASC) as xh,* from '+@biao+')
select * from TableX where xh between ('+@pageindex+'-1)*'+@pageCount+'+1 and '+@pageindex+'*'+@pageCount+'')
end;
这个是我写的一个存储过程,
@biao=where 1=1 and parentID=1 and shouHuoDiZhi='1'出错
消息 102,级别 15,状态 1,第 3 行
')' 附近有语法错误。
@biao=where 1=1 and userName='1' and shouHuoDiZhi='1'出错
消息 4145,级别 15,状态 1,第 3 行
在应使用条件的上下文(在 ')' 附近)中指定了非布尔类型的表达式。
@biao=where 1=1 and parentID=1 and dengLuCiShu=1 and userName='1'不出错
@biao=where 1=1 and parentID=1 and userName='1'不出错
@biao=where 1=1 and userName='1' 不出错
求大神指教怎么改啊。 展开
2个回答
展开全部
ALTER proc [dbo].[user_xianshi]
@biao varchar(50),--表名
@sql varchar(max),
@PageIndex int =1 --显示的页数
as
declare @PageCount int =5 --控制显示的行数
begin
if @sql <> ''
begin
set @biao=@biao+' '+@sql;--表名加判断条件
end
exec('with TableX
as ( select row_number()over(order by [id] ASC) as xh,* from '+@biao+')
select * from TableX where xh between ('+(@pageindex-1)*(@pageCount+1)+')+' and '+cast((@pageindex*@pageCount)as varchar))
end;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
上面rkc009 的做法是对的
SQL的CTE是with as (……)select ……
下面是CTE的语法:
[ WITH <common_table_expression> [ ,n ] ]
<common_table_expression>::=
expression_name [ ( column_name [ ,n ] ) ]
AS
( CTE_query_definition )
SQL的CTE是with as (……)select ……
下面是CTE的语法:
[ WITH <common_table_expression> [ ,n ] ]
<common_table_expression>::=
expression_name [ ( column_name [ ,n ] ) ]
AS
( CTE_query_definition )
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询