Full Text Search
Hello, I'm trying to do a full text search on my table but I can't make it work withous exact matches.
Here is a screenshot of my table :
I tried in js and directly in the SQL Editor
neither of them return rows.
What am I doing wrong ?

1 Reply
Text search does not work well for partials. You would have to turn to ilike or pg_trgrm.
It has ability to handle “prefixes” by doing jor* but the results are not robust.
This is a widely commented on topic for Postgres on the web. There should be lots of info out there.