Skip to content

SQL Reference

PER

SELECT CONCAT('MySQL', ' ', 'Example') AS CombinedString;
| CombinedString |
|-----------------|
| MySQL Example |

The CONCAT function in MySQL is used to concatenate two or more strings into one string. In this example, it combines the strings ‘MySQL’ and ‘Example’ into one string ‘MySQL Example’.