本文介绍了根据不同的、东西、路径查询更新行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

继续将多行合并成一个备忘录"nvarchar(max)

SELECT
    DISTINCT fileref, stuff(
        (
        Select char(13)+char(10) + IsNull( D2.viaccno, '' )
        From vi_accno As D2
        Where D2.vifileref = A.FileRef
        For Xml Path(''), type
        ).value('.', 'nvarchar(max)')
        , 1, 2, '') As accno
FROM
   vtindex a

我如何使用上述查询来更新表 1 中匹配 fileref = fileref 的每个 accno 行

How do i use the above query to update each accno row on table 1 matching fileref = fileref

表1:id、fileref、client、addr、accno

table 1:id, fileref, client, addr, accno

推荐答案

根据给定的数据,我可以为您提供:

Based on given data, I can offer you this:

UPDATE t
SET accno = p.accno
FROM [table 1] t
INNER JOIN (
SELECT
    DISTINCT fileref, stuff(
        (
        Select char(13)+char(10) + IsNull( D2.viaccno, '' )
        From vi_accno As D2
        Where D2.vifileref = A.FileRef
        For Xml Path(''), type
        ).value('.', 'nvarchar(max)')
        , 1, 2, '') As accno
FROM
   vtindex a
) as p
ON p.fileref= t.fileref

这篇关于根据不同的、东西、路径查询更新行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-04 21:54