I'm just starting out with full text searching and I've always used wildcards in the past. Here's a query I have:
SELECT rID, claimID+counter FROM claims WHERE claimID+counter LIKE '%ba%' AND (status='submitted' OR status='closed')
I'm trying to convert this to contains but I get an error saying that the column doesn't exist.
SELECT rID, claimID+counter FROM claims WHERE contains(claimID+counter,'ba') AND (status='submitted' OR status='closed')
I tried the above and no go. How do i fix this?