Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: case independent LIKE select?
Unless I am missing something, you will just do a simple select
statement as follows:
select *
from article_table
where UPPER(article_title) like 'UPPER(input_str)%';
![]() |
![]() |