查詢條件使用配置表 SQL Server

2021-10-01 07:26:46 字數 956 閱讀 9419

有時需要知道填入的客戶資訊是否完整,可以將完整性條件寫進sql**中,但是,維護起來會比較麻煩。所以考慮寫一張配置表,維護人員只需要改配置表的內容即可

現有如下問題,想得到某客戶資訊是否完整以及來呢西人資訊完整的數量~

/****** object:  storedprocedure [dbo].[p_dj_custominfo_isornot_complete]    script date: 2019/12/6 15:53:41 ******/

set ansi_nulls on

goset quoted_identifier on

gocreate proc [dbo].[p_dj_custominfo_isornot_complete]

asdeclare @condition nvarchar(max)

declare @number nvarchar(max)

set @condition=(select new_parameter_value from new_configuration_parameters

where new_parameter_name = 'account_info_valid_condition')

set @number=(select new_parameter_value from new_configuration_parameters

where new_parameter_name = 'contact_info_valid_condition')

declare @sql nvarchar(max)

set @sql=n'

select a.businessunitid

,a.name as dept

,b.systemuserid

,case when b.isdisabled=0 then

MongoDb查詢條件使用

列表內容 其他情況模糊查詢 查詢包含 2.查詢以 開頭 3.查詢以 結尾 4.查詢忽略大小寫 5.spring中不區分大小寫的模糊查詢 完全匹配 pattern pattern pattern.compile 王 pattern.case insensitive 右匹配 pattern patter...

hibernate中查詢條件使用

hibernate中經常用到帶多個引數的查詢條件語句,如果悲催的使用語句的拼寫成hql查詢語句就浪費了輕量級持久層框架了,也不是物件導向化運算元據庫了。在這裡hibernate提供了 expression來存放查詢的條件,restrictions。listexpressions new arrayl...

sql中使用IF條件查詢

sql 使用場景 當其他模組插入關聯值不一致但是要作顯示時,可以使用鍊錶查詢,利用if來判斷並替換顯示 語句 select m.id,m.req raw material uuid,m.req raw task uuid,m.material info no,m.part no,m.grade na...