多條件查詢例子

2021-04-13 08:33:15 字數 1175 閱讀 4475

alter procedure [dbo].[sp_tgongxu_selbymore]

@gx_name nvarchar(50)=null,

@gx_alias nvarchar(50)=null,

@gx_account_mode nvarchar(50)=null,

@gx_istime int=null,

@gx_iskeygongxu nvarchar(10)=null,

@gx_isdos nvarchar(10)=null,

@gx_isquality int=null,

@gx_ischoujian int=null,

@gx_account_soft nvarchar(50)=null

asdeclare @sql nvarchar(4000)

set @sql=coalesce(@sql,'')+

coalesce(' gx_name='''+@gx_name+''' and','')+

coalesce(' gx_alias='''+@gx_alias+''' and','')+

coalesce(' gx_account_mode='''+@gx_account_mode+''' and','')+

coalesce(' gx_istime='+cast(@gx_istime as varchar)+' and','')+

coalesce(' gx_iskeygongxu='''+@gx_iskeygongxu+''' and','')+

coalesce(' gx_isdos='''+@gx_isdos+''' and','')+

coalesce(' gx_isquality='+cast(@gx_isquality as varchar)+' and','')+

coalesce(' gx_ischoujian='+cast(@gx_ischoujian as varchar)+' and','')+

coalesce(' gx_account_soft='''+@gx_account_soft+''' and','')

if len(@sql)>0 set @sql=' where'+left(@sql,len(@sql)-4)

set @sql='select * from tgongxu'+@sql

exec(@sql)

go

多條件查詢

思路 1.獲取引數值 2.生成查詢條件 3.獲取查詢結果 4.繫結查詢選項 呼叫geturlhtml方法生成查詢url 例如 var y2013 pnvshihufu qbeijing sxuhuiqu 得到url變數值 protected string geturlval string name ...

多條件查詢

多條件查詢時在做專案的時候不可缺少的功能,雖然很簡單,但是自己還是記一下,對自己有用 查詢事件 private void button查詢 click object sender,eventargs e initial catalog uid pwd this.dataserver,this.dat...

多條件查詢

開發工具與關鍵技術 vs c 當使用者需要通過一定的條件進行範圍查詢的時候,在控制器中,就需要判斷使用者傳來的條件,一般使用者條件查詢會有下拉框,文字框等from表單元件 預設下拉框內的資料已繫結,本文暫不進行時間的範圍查詢 通過獲取這些元件的值,可以方便快捷的採集使用者的資訊 一 查詢 創鍵多條件...