以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 查询表的字段名字该怎么写 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=46028) |
-- 作者:wuxianzuoji41 -- 发布时间:2014/2/15 20:01:00 -- 查询表的字段名字该怎么写
dim sql as string="select a.*,b.* from table1 a,table2 b where a.id=b.id " With Tables(window_table)
With DataTables(window_table)
|
-- 作者:有点甜 -- 发布时间:2014/2/15 20:51:00 -- 改这一句就行了,类似着改。 Dim sql As String="select a.id as aid, a.*, b.id as bid, b.* from table1 a,table2 b where a.id=b.id "
|