data4impact/apps/data4impact-import-scripts/scripts/ptm/help_queries.sql

4 lines
187 B
MySQL
Raw Normal View History

2022-02-15 11:17:47 +01:00
insert into doc_fulltext(docid, fulltext) select d.id as docid, t.fulltext as fulltext from document d left outer join temp_fulltext t on (d.id = t.pubid) where t.fulltext is not null;