Hi guys,
Is it possible to do an exact phrase search using like? Something along the lines of:
tsql 'select count(*) from table1 where field01 like "hello*"'
I'd like to retrieve hello* as an exact match, but still use "like". Is this possible? I thought putting hello* in quotes would do it, but from several postings I've read this may not be the case.
Also, I'd like to read up more on your "thesaurus" terms-- you know, where search terms are enclosed in parentheses and joined with commas (word1,word2,word3)-- that sort of thing. I feel a bit like I'm on the outside looking in with regard to it, not quite sure what's happening when you do that, does it act like an OR statement, etc. Can you post a link or two from the manual on this? Thanks again.
Is it possible to do an exact phrase search using like? Something along the lines of:
tsql 'select count(*) from table1 where field01 like "hello*"'
I'd like to retrieve hello* as an exact match, but still use "like". Is this possible? I thought putting hello* in quotes would do it, but from several postings I've read this may not be the case.
Also, I'd like to read up more on your "thesaurus" terms-- you know, where search terms are enclosed in parentheses and joined with commas (word1,word2,word3)-- that sort of thing. I feel a bit like I'm on the outside looking in with regard to it, not quite sure what's happening when you do that, does it act like an OR statement, etc. Can you post a link or two from the manual on this? Thanks again.