vb中如何同时读取ACCESS数据库中的多个表的记录

我想请问下,vb中如何同时读取ACCESS数据库中的多个表的记录
最新回答
那个偷心的惯犯

2024-06-01 07:59:46

rec.open "select [a].name,[b].age,[c].height from a,b,c where a.no = b.no and b.no = c.no and a.no =1"
从abc3表中分别取出1条记录3个字段,每条记录的no字段都是1