Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个名为“产品代码”的列。这些都是人满为患的。我想做一个查询,在每个字段的开头插入一个',然后另一个查询在字段的末尾添加一个'。
因此,例如,目前产品代码可能是 fmx-2,在查询后我希望它看起来像“fmx-22”
我希望对表中的所有数据集执行此操作。我正在使用 Microsoft Access
谢谢
在 Microsoft Access 中,您可以使用&char 来连接字符串,您的查询可能类似于:
&
update my_table set product_code = "'" & product_code & "'";