SQL Server CONCAT() 函数
定义和用法
CONCAT() 函数将两个或多个字符串连接在一起。
注意: 另请参阅 使用 + 运算符连接 和 CONCAT_WS().
语法
CONCAT(string1, string2, ...., string_n)
参数值
参数 | 描述 |
---|---|
string1, string2, string_n | 必需。要连接在一起的字符串 |
技术细节
适用于 | SQL Server(从 2012 开始)、Azure SQL 数据库、Azure SQL 数据仓库、并行数据仓库 |
---|