Answers for "postgresql like case-insensitive"

SQL
3

postgres like case insensitive

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

Code answers related to "SQL"

Browse Popular Code Answers by Language