I am trying to build a search form so a user can input their search term. How do I handle the contains statement? do I 1) - add a contains statements for each word or 2 ) - just add all words into the one contains statement?
1 - CONTAINS (p.*, '"lighting"') AND CONTAINS (p.*, '"futures"')
2 - CONTAINS (contents, '"lighting and futures"')