combine 2 columns search query mysql

Solutions on MaxInterview for combine 2 columns search query mysql by the best coders in the world

showing results for - "combine 2 columns search query mysql"
Marjorie
12 Mar 2019
1Select Contacts.*, Contacts.ID as CID 
2from Contacts 
3left join website_Data 
4on Contacts.ID = website_Data.ContactID 
5where CONCAT(Contacts.FirstName,' ', Contacts.LastName) LIKE '%Illusion Softwares%' 
6order by Contacts.`Created` DESC 
7