📅  最后修改于: 2023-12-03 15:20:14.938000             🧑  作者: Mango
在 SQL Server 中,CONCAT() 函数用于将两个或多个字符串连接在一起。
CONCAT ( string1, string2 [, stringN ] )
参数说明:
string1
: 第一个字符串。string2
: 第二个字符串。stringN
: 可选。要连接的其他字符串。将两个字符串连接在一起:
SELECT CONCAT('Hello', 'World');
-- 输出 'HelloWorld'
将三个或更多字符串连接在一起:
SELECT CONCAT('SQL', ' ', 'Server');
-- 输出 'SQL Server'
将列值连接在一起:
SELECT CONCAT(FirstName, ' ', LastName) AS FullName
FROM Customers;
-- 输出客户的全名