Advertisement
Guest User

Untitled

a guest
May 19th, 2017
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. Here's my prepared query of the latest thing that I've tried. I call with the param bound naco_normalize of the URL.
  2.  
  3. select record
  4. from metabib.real_full_rec
  5. where tag = '856'
  6. and subfield = 'u'
  7. and index_vector @@ plainto_tsquery(?)
  8.  
  9. I have also tried building the query string by splitting the naco normalization of the URL and then joining with ' & '. I have not tried that with ' | ', because that would be too broad, I think. In the latter case, I tried both ? unadord and with to_tquery().
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement