码迷,mamicode.com
首页 > 其他好文 > 详细

单引號转义符q’的使用

时间:2017-08-06 18:13:59      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:转义   example   mod   转义符   article   包括   data-   pos   post   

当字符串包括单引號时,能够使用转义符q’对单引號进行转义。

q’后面的字符能够是:

    !

    [ ]

    { }

    ( )

    < >

前提是这些字符不会出如今兴许的SQL中。

 

样例1:直接使用单引號转义

SQL> select ‘it‘‘s an example‘ as"Example" from dual;

 

Example

------------------------------

it‘s an example

 

样例2:使用q’转义符转义

SQL> select q‘[it‘s an example]‘ as"Example" from dual;

Example

------------------------------

it‘s an example

 

上面两种写法都正确,可是显然后者可阅读性更强。


单引號转义符q’的使用

标签:转义   example   mod   转义符   article   包括   data-   pos   post   

原文地址:http://www.cnblogs.com/tlnshuju/p/7295213.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!