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

Thread: help me with &&

  1. #1
    Join Date
    Jul 2000
    Posts
    68
    Hi,
    Now i have a table emp (name varchar2(200)).
    I inserted data as below:

    insert into emp values ( 'tony & stone');

    i was prompted:
    enter value for stone:

    I know that because the "&" in the statement. I really want it in the table. So how could i disable the meaning of "&"?
    I used \& to try. It failed.

    Any ideas?


  2. #2
    Join Date
    Oct 2000
    Posts
    123
    Do this;

    insert into emp
    values('tom'||'&'||'bob');

    Take Care

  3. #3
    Join Date
    Jul 2000
    Posts
    68
    Hi, Mber:

    I got it!
    Thanks very much!

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