Hi
Question about full-text search, i have set up a table with two collumns, title and body
I have added a full-text to include both columns.
Now i want to search "google"-style in both columns but i cant get a hit from both at the same querie.
The table include a post: title=abc123, body = xyz987
select title from table where contains((title,body), 'abc123 and xyz987') is not working
select title from table where contains((title,body), 'abc123) is working and
select title from table where contains((title,body), 'xyz987') is working
How can i get FT to return hits from two different columns?
/bjorn