CONCAT()

The CONCAT() function adds two or more strings together. Syntax is CONCAT(string1, string2, …., string_n)


SELECT CONCAT('SQL', ' ', 'vs', ' ', 'Python');

Output:
SQL vs Python