Answers for "postgres like case insensitive"

SQL
3

postgres like case insensitive

using ILIKE instead of LIKE
Posted by: Guest on May-21-2020
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 "postgres like case insensitive"

Code answers related to "SQL"

Browse Popular Code Answers by Language