how to enter 'a&b' in varchar field? [message #115153] |
Thu, 07 April 2005 14:32 |
win_vj
Messages: 16 Registered: March 2005 Location: India
|
Junior Member |
|
|
Hi All,
I have a table which contains a varchar field. I have to enter a value in that field let say 'a&b', But oracle is taking it as a variable and asks to enter value for '&b'.
SQL> desc test1
Name Null? Type
----------------------------------------- -------- ------------
FNAME VARCHAR2(10)
LNAME VARCHAR2(10)
AGE NUMBER(3)
SQL> Insert into test1(FNAME,LNAME,AGE) values('a&b','b&a',20);
How can i enter a&b in these fields?
Thanks in Advance!
WIN
|
|
|
|
|
|
|