oracle search word in string
        Posted  
        
            by Atul
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Atul
        
        
        
        Published on 2010-06-13T15:26:09Z
        Indexed on 
            2010/06/14
            1:12 UTC
        
        
        Read the original article
        Hit count: 286
        
I want to search a word in string in ORACLE in which string is comma separated. Eg. String is ('MF1,MF2,MF3') and now I want to search whether 'MF' exists in that or not. If I am using instr('MF1,MF2,MF3','MF') it will give wrong result since I want to search Full MF in MF1 or MF2 or MF3.
© Stack Overflow or respective owner