Postgresql full text search functions

word-similarity
tsvector

Postgresql full text search functions

You can show this QR Code to a friend or ask them to scan directly on your screen!

Thanks for sharing! 🫶

The url for this was also copied to your clipboard!
SELECT to_tsvector('english', 'github');
select word_similarity ( 'git', 'github' ), 'git' % 'github';
select word_similarity ('https://github.com/woylie/let_me', 'git'), 'https://github.com/woylie/let_me' %> 'git' ;
See more from etori.sangiacomo