QUOTE
quote
描述
语法
VARCHAR quote(VARCHAR str)
将参数中所有的字符串按原样输出,并用''套起来
举例
    
        
            
            
                1mysql> select quote('hello world!\\t');
2+-------------------------+
3| quote('hello world!\t') |
4+-------------------------+
5| 'hello world!\t'        |
6+-------------------------+
             
         
     
  
keywords