eg: {!join from =linked_id to=id}content:*查询*
词查询的意思是将content field字段中包含“查询” 的查询出来并返回linkedid 然后再所有内容中查询id在返回的linkedid中的内容
相当于sql
select * from table b,
(select linked_id from table where content like ”%查询%”) a
where b.id in ( a.linked_id);
eg: {!join from =linked_id to=id}content:*查询*
词查询的意思是将content field字段中包含“查询” 的查询出来并返回linkedid 然后再所有内容中查询id在返回的linkedid中的内容
相当于sql
select * from table b,
(select linked_id from table where content like ”%查询%”) a
where b.id in ( a.linked_id);