We are facing a problem with full text search on a forms builder template because we can't find a way to use search operators. E.g.
select * from dm_document SEARCH DOCUMENT CONTAINS '$words$'
if I search for "test AND document" the result query would be select * from dm_document SEARCH DOCUMENT CONTAINS 'test AND document'
and would return the same as select * from dm_document SEARCH DOCUMENT CONTAINS 'test' or 'AND' or 'document' when in fact I want select * from dm_document SEARCH DOCUMENT CONTAINS 'test' AND 'document'. How could I generate the desired query on forms builder if I cannot parse the user input to insert the ' on the correct places?