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 of 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?