开发者

How join tables in multiple folders with Advantage Database Server

开发者 https://www.devze.com 2023-01-25 19:18 出处:网络
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 th

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

精彩评论

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