PostgreSQL tidak sensitif kasus di mana

-- Install 'Case Ignore Test Extension'
create extension citext;

-- Make a request
select 'Thomas'::citext in ('thomas', 'tiago');
Tiago F2