How can I write an insert statement which includes the & character? For example, if I wanted to insert "J&J Construction" into a column in the database.
I'm not sure if it makes a difference, but I'm using Oracle 9i.
|
|
|
|
|
|
|
I keep on forgetting this and coming back to it again! I think the best answer is a combination of the responses provided so far. Firstly, & is the variable prefix in sqlplus/sqldeveloper, hence the problem - when it appears, it is expected to be part of a variable name. SET DEFINE OFF will stop sqlplus interpreting & this way. But what if you need to use sqlplus variables and literal & characters?
e.g.
Produces:
If you want to use a different escape character:
When you set a specific escape character, you may see 'SP2-0272: escape character cannot be alphanumeric or whitespace'. This probably means you already have the escape character defined, and things get horribly self-referential. The clean way of avoiding this problem is to set escape off first:
|
||||
|
|
|
There's always the chr() function, which converts an ascii code to string. ie. something like: INSERT INTO table VALUES ( CONCAT( 'J', CHR(38), 'J' ) ) |
||
|
|
|
|
Stop using SQL/Plus, I highly recommend PL/SQL Developer it's much more than an SQL tool. p.s. Some people prefer TOAD. |
||
|
|
|
|
The correct syntax is
|
||
|
|
|
|
In a program, always use a parameterized query. It avoids SQL Injection attacks as well as any other characters that are special to the SQL parser. |
||
|
|
|
|
SET SCAN OFF is obsolete http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a90842/apc.htm |
||
|
|
|
|
I've found that using either of the following options works:
or
I don't know enough about databases to know if one is better or "more right" than the other. Also, if there's something better than either of these, please let me know. |
||
|
|
|
|
(Untested, don't have an Oracle box at hand and it has been a while) |
||
|
|
|
If you are doing it from SQLPLUS use
to stop it treading & as a special case |
||
|
|
|
If you are using sql plus then I think that you need to issue the command
|
|||
|
|
|
|
{J&J Etc.} or \& should work. You may need to 'set escape \' in sqlplus for this to work. |
||
|
|