I'm just confuse if I will use FTS or plain SQL Query (LIKE). I tried to use FTS on one table but I think it is not accurate when the search value is not a complete word. Here is my table.
Description, POnumber,PRNumber,InvoiceNumber,CreatedBy,UpdatedBy
Test user PO1 PR1 Inv 1 userm userm
Test2 PO2 PR2 Inv 2 userm userm
Test3 PO3 PR3 Inv 3 userm userm
SELECT description,ponumber,prnumber,invoicenumber,createdby,updatedby
FROM MSTR_FILE
WHERE FREETEXT((createdby,updatedby,ponumber,invoicenumber,prnumber,description),'user')
the result is the first row but when the value is 'userm' all the row was selected. My desired result is all the row that contains the userm will be displayed.