I have a table that contains a full text indexed column.I run queries on this table using the contains(*,'word') syntax.The problem occurs when the column has text with brackets "()" within it, like the following :Quartier Latin Band (Dance orchestra)this query does not return anything :select * from Citations where contains(*, '"Quartier Latin Band (Dance orchestra)" ')
so i tried to escape the brackets using a [] like :select * from Citations where contains(*, '"Quartier Latin Band [(]Dance orchestra[)]" ')
But, to no avail.Is there any other way of escaping the "()" characters properly, short of replacing them full text friendly characters ?(Yeah, i tried the ESCAPE syntax, but that does not work with FT queries)thanksashok-ashok"Bad dancing does not break an engagement."