以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 两个数据源的数据合并 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=94641) |
-- 作者:bobolan521 -- 发布时间:2016/12/28 16:38:00 -- 两个数据源的数据合并 Dim cmd As New SQLCommand Dim dt As DataTable cmd.ConnectionName = dr("数据源") cmd.CommandText = "selec t * from icstockbill where fdate = \'2016-12-28\' " dt = cmd.ExecuteReader() Dim cmd1 As New SQLCommand Dim dt1 As DataTable cmd1.ConnectionName = dr1("数据源") cmd1.CommandText = "selec t * from icstockbill where fdate = \'2016-12-28\' " dt1 = cmd1.ExecuteReader() 有两个不同的数据源 我要把dt和dt1的内容合并成dt2后再进行查询 请问一下老师代码要怎么写啊,谢谢
[此贴子已经被作者于2016/12/28 16:39:30编辑过]
|
-- 作者:有点色 -- 发布时间:2016/12/28 16:55:00 -- 你可以用filler填充
http://www.foxtable.com/webhelp/scr/0680.htm
也可以用这种方法
http://www.foxtable.com/webhelp/scr/2137.htm
|