以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  如何比较2个表数据  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=41638)

--  作者:wuxianzuoji41
--  发布时间:2013/10/24 8:01:00
--  如何比较2个表数据
表A的列pid ,表B的列product_id,怎么实现表表A的列pid有多少条记录的序号,就同步到表B有多少列的序号。也就是发现表B没有这个行的序号,就吧表A的的序号加进去

For Each dr1 As Row In Tables("A").Rows
    Dim dr2 As DataRow = DataTables("B").Find("pid <> \'" & dr1("product_id") & "\'")
       If dr2 Is Nothing Then
       dr2("pid")=dr1("product_id") 
    End If
Next

我的写法错在哪里
[此贴子已经被作者于2013-10-24 8:05:08编辑过]

--  作者:Bin
--  发布时间:2013/10/24 8:24:00
--  
For Each dr1 As Row In Tables("A").Rows
    Dim dr2 As DataRow = DataTables("B").Find("pid = \'" & dr1("product_id") & "\'")
       If dr2 Is Nothing Then
       dr2("pid")=dr1("product_id") 
    End If
Next

--  作者:wuxianzuoji41
--  发布时间:2013/10/24 8:29:00
--  
bin,按照你的提示未将对象引用到实例,是不是需要加一个ADDNEW,在哪里加呀
--  作者:Bin
--  发布时间:2013/10/24 8:31:00
--  
For Each dr1 As Row In Tables("A").Rows
    Dim dr2 As DataRow = DataTables("B").Find("pid = \'" & dr1("product_id") & "\'")
       If dr2 Is Nothing Then
         dr2=DataTables("B").addnew
       dr2("pid")=dr1("product_id") 
    End If
Next