電子商務中遇到組合搜尋的問題

來源:互聯網
上載者:User

         在電子商務網站中進行搜尋時,經常要將各種條件進行組合查詢,如選擇了年份,價格,顏色,品牌等條件,要求輸出滿足條件的結果。我試圖寫一個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

 

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.