<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>
다시 색상 표에 액세스하지 않고 어떻게 할 수 있습니까? copyfield wiki을 또한 여기 좀 걸릴 수 있습니다 : 당신이 찾고 내가 생각이
<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