I have the following query
  select count(person),  from [table]
  where (date > '2015-01-01')
  group by person
This query returns 100  as result, i need to know how to add another condition in where clause using LIKE and getting the same result  (100)
  select count(person),  from [table]
  where (date > '2015-01-01' and name LIKE '%?%')
  group by person
The name column event if it's added it should have no effect on the final result
 
     
     
    