SQL插入文本&合并另一列的数据

时间:2015-06-25 19:41:06

标签: sql sql-server-2012

我有一个名为TEMP的表格和两列[col1][col2]

[col1]有一个名单。 [col2]目前为空。

我正在尝试在[col2]中插入一些带有特殊字符的文字,并在每个插页中包含[col1]的名称。

所以基本上在我想要的[col2]中(包括特殊字符):

some text < " > [col1] < " > some text

BTW我正在使用SQL Server 2012,以免在SQL中发挥作用。

提前致谢!

1 个答案:

答案 0 :(得分:0)

试试这个:

update TEMP 
set col2 = 'some text < " >' + [col1] + '< " > some text'