码迷,mamicode.com
首页 > 数据库 > 详细

sql存储过程,根据多个条件查询,返回一个dataTable或者DataSet

时间:2017-11-01 17:52:44      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:一个   max   begin   sel   str   des   proc   new   pre   

不废话,先直接代码

首先sql部分(我在这里加了一个@zx作为判断,一般不需要这个参数):

ALTER Proc [dbo].[Proc_Boss_Show]
@StrIndex varchar(500),--开始条数
@EndIndex varchar(500),--结束条数
@StrWhere  varchar(max),
@zx int --执行区间  1执行 top n  2显示所有数据
as

begin
     declare  @strSqlstr varchar(500)
     
     if(@zx=1)
     begin
         set @strSqlstr=select  * from (select top +@EndIndex
         set @strSqlstr+=  row_number() over(order by 提货时间 desc)
         as xx,* from View_Boss_Show  where 1=1 +@StrWhere
         set @strSqlstr+= ) as xx where xx>+@StrIndex


    end
     if(@zx=2)
    begin
       set @strSqlstr=select * from  View_Boss_Show  where  1=1 +@StrWhere
    end

print @strSqlstr
exec(@strSqlstr)

asp.net代码(直接用DataTable接收):

DataTable dt = null;
            try
            {
                dt = DBHelper.GetDataTable("Proc_View_show1391", para);
            }
            catch (Exception ex)
            { //throw new Exception(ex.ToString());
            }

 

sql存储过程,根据多个条件查询,返回一个dataTable或者DataSet

标签:一个   max   begin   sel   str   des   proc   new   pre   

原文地址:http://www.cnblogs.com/1439107348s/p/7767578.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!