I am trying to make a MySQL query where I filter the records based on the search text using LIKE keyword.
For example if the user searches for Illusion Softwar
Illusion Softwar
SELECT *,c.ID as CID FROM Contacts c LEFT OUTER JOIN website_Data w ON c.ID=w.ContactID WHERE c.Email OR CONCAT_WS(' ',c.FirstName,c.LastName) LIKE '%Illusion Softwares%' ORDER BY c.Created DESC;