| Author's name: Connor McDonald
Author's Email: connor_mcdonald@yahoo.com |
Date written: August 13, 2001 Oracle version(s): 7.3+ |
| How do I get SQL*Plus to store an ampersand (&) in the database ? | |
The & is a special character to indicate a substitution variable. To override this, and thus allow & to be treated like any other character, all you need is:
SQL> set define off
SQL> insert into table values ('value&with&ersand');
1 row created.
Further reading: N/A