PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

PostgreSQL:Volltextsuche - Wie sucht man nach Teilwörtern?

Versuchen Sie es,

SELECT title FROM movies WHERE to_tsvector(title) @@ to_tsquery('squire:*')

Dies funktioniert auf PostgreSQL 8.4+