The default behaviour of LIKE and the other comparison operators, = etc is case-sensitive.
LIKE
=
Is it possible make them case-insensitive?
you can do something like that:
where regexp_like(name, 'string$', 'i');