C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
| MySQL QUOTE() FunctionQuote(str) is a Sring function of MySQL. This method returns the string which is passed in single quote. Syntax
 select quote(str); Example 1
 
select quote('TheDeveloperBlog is a website');
Output:   Example 2
 
select quote('mysql String function');
Output:   
Next TopicMySQL String
 |