暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

How do I embed the ampersand (&) as part of the literal text I use in an SQL statement ?

2011-01-01
966

The Oracle (tm) Users' Co-Operative FAQ

How do I embed the ampersand (&) as part of the literal text I use in an SQL statement ?


Author's name: Michael Haynes

Author's Email: mhaynes@ee.net

Date written: January 2nd, 2002

Oracle version(s): SQL*Plus 3.3.2 and 8.1.6

What can be done to allow the use of a literal ampersand within a SQL statement for INSERT, SELECT, etc.?


If you attempt to include an ampersand character (&) in a string within a SQL statement in SQL*Plus it is interpreted as the beginning of a variable name.  For example:
 

SQL> insert into companies values ('A & P');
Enter value for p: blah
old   1: insert into companies values ('A & P')
new   1: insert into companies values ('A blah')

1 row created.

To turn off this manner of interpreting the ampersand, it must be at the end of a string.  Thus, to handle the insert shown above properly, do the following:
 

SQL> insert into companies values ('A &'||'P');

1 row created.

SQL> select * from companies;

COMPANY_NAME
--------------------------------------------------------------------------------
A blah
A & P

The same syntax can be used to include a literal ampersand in other types of statements (SELECT, UPDATE, etc.) within SQL*Plus.


Further reading: N/A




最后修改时间:2020-04-16 15:13:14
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论