虽然有一些答案,但我还是无法将它们应用到我的问题中 这是我的查询,
SELECT ft.id, mw.words
FROM debug_regexfreeFlickrFullInfo ft, lateral
(select array_agg(plainto_tsquery(field_3)) as words, count(*) as cnt
from debug_gb
where textsearchable_index_col @@ any(plainto_tsquery(field_3))
) mw
where mw.cnt > 0;
我想在表格中搜索关键字列表,并获得匹配的关键字!但我得到了这个错误:
ERROR: op ANY/ALL (array) requires array on right side
我不知道如何解决它!