Loading lesson path
Concept visual
Start at both ends
'W3Schools' + '.com';Formula
The + operator allows you to add two or more strings together.and CONCAT_WS() functions. Syntax string1 +
Formula
string2 + string_nDescription string1, string2, string_n Required. The strings to add together
SQL Server (starting with 2005), Azure SQL Database, Azure SQL Data Warehouse, Parallel Data Warehouse
'SQL' + ' is' + ' fun!';Add strings together (separate each string with a space character):
'SQL' + ' ' + 'is' + ' ' + 'fun!';❮ SQL Server Functions