我有两个在整个网站上运行的字段,我想匹配这样,当用户输入其中一个字段的值时,它将匹配另一个字段。我正在使用 Sitecore Rocks 并尝试使用查询来执行此操作。
select @#h1#, @#Title#
from /sitecore/Content/Home//*[@#h1# !="@#Title#"];
update set @#h1# = @#Title# from /sitecore/Content/Home//*[@#Title# = "<id>"];
我在这里想念什么?