Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. SELECT country FROM table WHERE country IN (:searchList)
  2.  
  3. SELECT country FROM table WHERE country IN ( 'Paris, France', 'Berlin, Germany' );
  4.  
  5. SELECT country FROM table WHERE country LIKE '%France%' OR country LIKE '%Germany%';
  6.  
  7. SELECT country FROM table WHERE country IN (:searchList)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement