Am having the table with below data,
  +----------+---------+
  | Country  | Product |
  +----------+---------+
  | Poland   | Lyca    |
  | USA      | Lyca    |
  | UK       | GT      |
  | Spain    | GT      |
  | Swiss    | Lyca    |
  | Portugal | GT      |
  +----------+---------+
From the above table, I am trying to fetch the data using the query which is given below,
 Select Country,Product from tab where Country in ('%pai%','%U%')
Query was executing but i am getting the empty resuls. So, kindly confirm me, whether the above query is valid or not.
 
     
    