I have 2 rows in my table like this
- name: Charlie id: 26
- name: Frank id: 28
I want a case sensitive comparison.
I wrote a query like this
select *
from table1
where name in ('charlie', 'Frank') COLLATE Latin1_General_CS_AS;
but it is not working. What should be the query?