Answers for "how to make postgresql case-insensitive"

2

postgresql select case insensitive

SELECT id 
  FROM groups
 WHERE LOWER(name)=LOWER('Administrator')
Posted by: Guest on July-13-2021
1

postgresql like case-insensitive

-- Postgresql case insensitive:
SELECT * FROM people WHERE name ILIKE 'JOHN'
-- John
-- JOHN
-- john
Posted by: Guest on April-05-2021

Code answers related to "how to make postgresql case-insensitive"

Browse Popular Code Answers by Language