使用串联值更新列
我有一个 id 字段(int
类型)和 varchar
字段。
我必须连接两列并将结果存储到数据类型为 nvarchar 的另一列;
这可能吗?
I have an id field (int
type) and varchar
field.
I have to concatenate both columns and store the result to another column with data type nvarchar
;
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的当然:
Yes, of course:
您可以创建新的 NVARCHAR 列作为计算列。
You can create your new NVARCHAR column as computed one.