What is the most efficient and elegant SQL query looking for a string containing the words \"David\", \"Moses\" and \"Robi\". Assume the table is named T an
Select * from table where columnname like'%David%' and columnname like '%Moses%' and columnname like'%Robi%'