該表的結構 「TestTable的」 是查詢中的Lucene
ID INT主鍵
的productid INT
屬性Id INT
值VARCHAR(250)
其中productid是產品的唯一標識, attributeid是產品屬性的唯一標識,例如尺寸,質量,身高,顏色 和'值'是屬性的值
我必須過濾結果。我通過這個查詢來達到要求。 但我無法在查詢中完成。
select a.* from dbo.testtable a
where a.attributeId=10 and a.[Value]='Romance'
and productId in
(
select productId
from
dbo.testtable where attributeId =7 and [Value]='Hindi'
)
需要幫助建立這個查詢..
您無法使用lucene查詢表格。你有這個數據的現有lucene索引嗎? – skaffman 2009-06-16 07:22:13
是的..數據已經編入索引 – Shashi 2009-06-16 07:43:54