
Altering the Substitution Character in SQL*Plus
When you are inserting data into Oracle tables in SQL*Plus using hard-coded string, some of the character fields may contain the ampersand character (&). The following is an example: insert into dept (deptno, deptname) values(20,’R&D’); However, within SQL*Plus, “&” is treated as a substitution character by default. Thus, the above