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

Thread: delete a row with & symbol

  1. #1
    Join Date
    Mar 2001
    Posts
    78
    hi friends

    When I type
    delete * from tablename where c1=' aaa & bbb';
    It is asking to enter a value(run time parameter passing)
    Please help me how to delete this row.

    thanks and regards

  2. #2
    Join Date
    Sep 2001
    Location
    NJ, USA
    Posts
    1,287
    delete from table_name where c1 = 'aaa '||chr(38)||' bbb';

  3. #3
    Join Date
    Sep 2001
    Posts
    15
    Hi!

    SQL*Plus right?

    set define off

    It cancels special meaning for ampersand character - '&'
    Victor
    www.dynamicpsp.com

  4. #4
    Join Date
    Mar 2001
    Posts
    78

    Cool

    thank you guys

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