|
SELECT to_tsvector('english', 'CumEx-Files 2.0 investigation reveals €150bn tax fraud'), to_tsquery('english', 'CumEx-Files<->2.0');
to_tsvector |
to_tsquery |
'150bn':7 '2.0':4 'cumex':2 'cumex-fil':1 'file':3 'fraud':9 'investig':5 'reveal':6 'tax':8 |
( 'cumex-fil' & 'cumex' & 'file' ) <-> '2.0' |
… |
|