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. Syntax
 
select concat('arg1','arg2','arg3',....);
Example 1
 
select concat('java','t','point');
Output:   Example 2
 
select concat('m','y','s','q','l');
Output:   
Next TopicMySQL String
 |