Hi,I have a soql query where i am using LIKE operator.String sql = 'Select Name From Account WHERE Name LIKE \'%' + searchKeyword + '%\'';Here 'searchKeyword' variable holds values like 'Test 1, Test 2, Test 3, Test 4'.When i search a Name in my VF page which is a Textbox, like this 'Test 1, Test 4' its not returning the searchKeyword values. Because LIKE operator searches values only in Orderwise. It cant search middle values.Is there any possible solution where it searches all values that are contained in the textbox?ThanksVivek