-- Install 'Case Ignore Test Extension' create extension citext; -- Make a request select 'Thomas'::citext in ('thomas', 'tiago');
-- Postgresql case insensitive: SELECT * FROM people WHERE name ILIKE 'JOHN' -- John -- JOHN -- john