PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

PostgreSQL :Recherche plein texte - Comment rechercher des mots partiels ?

Essayez,

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

Cela fonctionne sur PostgreSQL 8.4+