Skip to Main Content

Oracle Database Express Edition (XE)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Character match not capturing all cases.

ForSlyJul 26 2018 — edited Jul 27 2018

I am trying to filter out all occurrence of Internship  in  table column using the following query , howver for some reason, some cases of Inern occurences are not getting captured. Does anyone have any suggestions on how to make this logic capture all cases?

select distinct  

          wc_application_event_f.pi_candidate_num,

          wc_application_event_f.job_info_row_wid,

           WC_JOB_INFORMATION_D.job_family_name,

           wc_job_information_d.title,

            wc_job_information_d.organization_name

            from  wc_application_event_f

      INNER join wc_job_information_d

            on wc_application_event_f.job_info_row_wid=  wc_job_information_d.row_wid

            where pi_his_itm_app_trk_sts_name = 'Hired - External'

    and pi_his_itm_app_trk_step_name = 'Hire'

    AND (   TITLE LIKE '%Intern %'

             or title like '%Internship%' );

This post has been answered by Gaz in Oz on Jul 26 2018
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 24 2018
Added on Jul 26 2018
8 comments
242 views