C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
MySQL CONCAT() FunctionConcat() is a Sring function of MySQL This method returns a string by concatenating all the arguments. It can have more than one argument. Syntaxselect concat('arg1','arg2','arg3',....); Example 1select concat('java','t','point'); Output: Example 2select concat('m','y','s','q','l'); Output:
Next TopicMySQL String
|