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. Syntaxselect quote(str); Example 1select quote('TheDeveloperBlog is a website'); Output: Example 2select quote('mysql String function'); Output:
Next TopicMySQL String
|