Is there any way to concatenate two strings without using '+' operator or CONCATENATION function?
You can use stuff() function - reference
SELECT STUFF('One match', 5, 0, 'day ')