DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: Replace.

  1. #1
    Join Date
    Feb 2001
    Posts
    103
    I want to replace (') by (`). Can anybody help me out.
    Thankx in advance.
    When the going gets tough, the tough gets going

  2. #2
    Join Date
    Oct 2000
    Posts
    13

    Exclamation

    Use replace function.
    REPLACE (string,string_to_replace,replacement_string).
    example:
    REPLACE('ADAH','A','BLAH') = BLAHDBLAHH

  3. #3
    Join Date
    Feb 2001
    Posts
    125
    will this do?


    SQL> select replace ('soni''ji','''','`') from dual;

    REPLACE
    -------
    soni`ji


    P.Soni

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width