Answers for "postgresql select case insensitive"

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

Code answers related to "postgresql select case insensitive"

Browse Popular Code Answers by Language