我有一個多值字段Solr的數據導入多值字段到一個單一的值域
<arr name="colors">
<str>Blue</str>
<str>Red</str>
<str>Orange</str>
<str>Pink</str>
<str>Violet</str>
</arr>
填充像這樣:
<entity name="pub_attributes" query=" SELECT name [description] FROM dbo.Colors">
<field name="colors" column="description" />
</entity>
我需要另一個領域的所有顏色,但只有一條線通過空格分開像
<str name="Colors_All">Bue Red Orange Pink Violet</str>
我怎麼能做到這一點無需從頭再來訪問色彩表? 也許這樣的事情
<entity name="Properites_all" query="
DECLARE @all VARCHAR(MAX)
SET @all = ''
Select @all = @all + ... from '${pub_attributes.colors}'
UNION
Another SELECT that will add more info than just the colors
">
<field name="colors_all" column="description" />
</entity>
你能接受一些你以前得到的答案嗎? – javanna 2012-07-24 07:50:42