My search phrase is "test doc".
I have a query with full-text search phrase like this:
SELECT doc.iEntityId, doc.strName, doc.iHandbookId
FROM m136_tblDocument doc
WHERE iLatestApproved = 1
AND doc.iDeleted = 0
AND (
(CONTAINS(doc.strName, '"test doc*"')))
The result as this picture: result
But if I try to put search phrase is "test doc 3".
It gives no hit. result.
My expected will give 3 hits: test docyument 23, test doc 3 and test doc 1.3.1
Anyone can help me?
Thank in advance.