Just checking here.
If I had a database field to search in, and I was interested in finding the name John Edgar Richardson, but I wasn't sure if there were other terms between the various parts of the name, would this work?
select ID from mytable where AU_NAME like '+John +Edgar +Richardson w/50'
I'm not sure about the three plus signs (never seen it before) and whether it's allowed.
Also, would an intersection "@2" term be appropriate here, or is it overkill in this instance, since I need all three of the terms?
Finally, suppose I knew "John Edgar" would always be together. Is this a good search to try in that case?
select ID from mytable where AU_NAME like '"John Edgar" +Richardson w/50'
Of course, I'm assuming above these terms will be within 50 characters of each other.
If I had a database field to search in, and I was interested in finding the name John Edgar Richardson, but I wasn't sure if there were other terms between the various parts of the name, would this work?
select ID from mytable where AU_NAME like '+John +Edgar +Richardson w/50'
I'm not sure about the three plus signs (never seen it before) and whether it's allowed.
Also, would an intersection "@2" term be appropriate here, or is it overkill in this instance, since I need all three of the terms?
Finally, suppose I knew "John Edgar" would always be together. Is this a good search to try in that case?
select ID from mytable where AU_NAME like '"John Edgar" +Richardson w/50'
Of course, I'm assuming above these terms will be within 50 characters of each other.