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 and the column C.
Select * from table where columnname like'%David%' and columnname like '%Moses%' and columnname like'%Robi%'
1.4m articles
1.4m replys
5 comments
57.0k users