+ 1

SQL, selecting items with specific pattern

I would like to select all names contain letter ā€˜g’ from a table, the names can be started with g, g in between or end with g. Which query is most suitable? Query 1: SELECT * FROM table WHERE Name LIKE ā€˜%g%’; Query 2: SELECT * FROM table WHERE Name LIKE (ā€˜g%’ OR ā€˜%g%’ OR ā€˜%g’);

3rd May 2019, 1:39 AM
Poo
0 Answer