开发者

How join tables in multiple folders with Advantage Database Server

Using Advantage Database Server SQL, I need to be able to join free tables that are in separate folders. Is there a way to d开发者_如何学运维o this?


With free tables you can specify relative paths to the tables in the FROM clause.

SELECT * FROM "..\directory1\table1.adt" a, "directory2\table2.adt" b WHERE a.ID = b.ID;

This entry in the help files describes the basics of it.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜