EDIT: Just realised that the reason for the additional results is down to another line in the query! Don't think I have enough rep to close this question.
I'm editing some existing SQL code which is searching a Lotus Notes DB.
I have this line:
@Contains(Title; "blah blah 1.5")
and I want to return only those records which contain exactly the given string in the title.
Currently it returns all records which contain "blah blah 1" so for example I get "blah blah 1.1", "blah blah 1.2" etc.
My guess is that I need to escape the '.' but I don't know how to.