Guest User

Untitled

a guest
Mar 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. select * from table1
  2. join CONTAINSTABLE (table1,(Title,Description_HTML),
  3. '"of" and "Department"')
  4. tb2 on tb2.[key] = table1.ID
  5.  
  6. select * from sys.dm_fts_parser('"of" and "-" and "Department"',
  7. 1033, NULL, 0) --American English, No stop words, Accent Insensitive;
  8.  
  9. select * from sys.dm_fts_parser('"of""-""Department"',
  10. 1033, NULL, 0) --American English, No stop words, Accent Insensitive;
  11.  
  12. select * from sys.dm_fts_parser('"of-Department"',
  13. 1033, NULL, 0) --American English, No stop words, Accent Insensitive
  14.  
  15. enter code here
Add Comment
Please, Sign In to add comment