目录

MS Access 用 & 拼接

示例

将 3 列添加到一个 "Address" 列中:

SELECT Address & ", " & PostalCode & ", " & City AS Address
FROM Customers;
亲自试一试 »

定义和用法

& 运算符允许您将两个或多个字符串添加在一起。

语法

string1 & string2 & string_n

参数值

Parameter Description
string1, string2, string_n Required. The strings to add together

技术细节

工作于: 从 Access 2000