在電子商務網站中進行搜尋時,經常要將各種條件進行組合查詢,如選擇了年份,價格,顏色,品牌等條件,要求輸出滿足條件的結果。我試圖寫一個SQL函數來實現這種動態組合的查詢,但是還是沒有能完全實現,只是能實現固定的2中組合的查詢,希望各位大俠看到下面代碼後能夠幫忙實現下或者提供下思路:
/*根據字串中的分隔字元,將字元分割成一個列表,通過Table返回 */
create function [dbo].[fn_split](@inputstr nvarchar(4000), @seprator nvarchar(10))
returns @temp table (a nvarchar(200))
as
begin
declare @i int
set @inputstr = rtrim(ltrim(@inputstr))
set @i = charindex(@seprator , @inputstr)
while @i >= 1
begin
insert @temp values(left(@inputstr , @i - 1))
set @inputstr = substring(@inputstr , @i + 1 , len(@inputstr) - @i)
set @i = charindex(@seprator , @inputstr)
end
if @inputstr <> '\'
insert @temp values(@inputstr)
return
end
/*解析輸入的字串中的分隔字元來擷取搜尋條件,
同時根據這些搜尋條件在表T_B_ProductAttr中進行查詢
目前函數只是實現了查詢2個或者3個條件組成字串的功能
我花了2個小時試圖完成能將字串分解成n個條件的查詢,結果
未果,希望各位大俠能幫忙擴充成能將字串分解成n個條件的查詢
*/
CREATE function [dbo].[fn_GetProductIDByAttValue]
(
@attval nvarchar(200),--輸入條件字元
@num int--條件屬性的個數
)
returns @temp table (a nvarchar(200))
as
begin
--declare @temp table(a nvarchar(200))
--聲明暫存資料表來存放輸入的條件值
declare @tempAttValue table(rownum int,a nvarchar(200))
--將條件值存放在暫存資料表並加上行號
insert into @tempAttValue
select ROW_NUMBER() Over (ORDER BY a),a
from dbo.fn_split(@attval,',')
--如果條件的個數為2
if @num=2
begin
--聲明屬性參數並給其賦值
declare @attval1 nvarchar(30)
declare @attval2 nvarchar(30)
select @attval1=a from @tempAttValue
where rownum=1
select @attval2=a from @tempAttValue
where rownum=2
--擷取查詢到的結果並返回
insert into @temp
select ProductID from T_B_ProductAttr
where attrValue=@attval1 and ProductID in (
select ProductID from T_B_ProductAttr
where attrValue=@attval2)
end
else if @num=3
begin
--聲明屬性參數並給其賦值
declare @attval4 nvarchar(30)
declare @attval5 nvarchar(30)
declare @attval6 nvarchar(30)
select @attval4=a from @tempAttValue
where rownum=1
select @attval5=a from @tempAttValue
where rownum=2
select @attval6=a from @tempAttValue
where rownum=3
--擷取查詢到的結果並返回
insert into @temp
select ProductID from T_B_ProductAttr
where attrValue=@attval4 and ProductID in (
select ProductID from T_B_ProductAttr
where attrValue=@attval5 and ProductID in (
select ProductID from T_B_ProductAttr
where attrValue=@attval6
))
end
return
end