python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
PostgreSQL FTS text should be combined into one line
I have a table that has columns with title and content.
CREATE TABLE t_items (
item_id varchar PRIMARY KEY,
title varchar,
content varchar);
insert into t_items values ('111', 'Madrid title n1', 'The...

Sergey Kozlov
Votes: 0
Answers: 0
sqlite3 fts5 contentless or content=external table, how store and read a non-FTS column value
I am working with an SQLite3 database. And I want to create an FTS5 content-less (content="") or content="external table" table to save space and prevent duplication of data (which...
Pankaj
Votes: 0
Answers: 2
neo4j full text doesn't return the highest score for exact match
I am trying to understand why some results have higher score by using neo4j full text index even though i have the exact match of the keyword in my database. For example;
I'm looking for the word 'NAT...
curiosityrock
Votes: 0
Answers: 0
Searching for a string of text from the main body and footnotes and copying it and its following # characters into an excel document
I have a large number of documents which I need to pull out file name references from, spread out across large blocks of text and footnotes.
I currently have a word VBA code that I think should search...
RMullen27
Votes: 0
Answers: 3