Show data other file (1 Viewer)

carl024

Registered User.
Local time
Today, 06:31
Joined
Nov 21, 2011
Messages
48
show data other file without link table i write this query

SELECT Table2.ename
FROM Table2 F:\database.mdb ;




query not result
 

tehNellie

Registered User.
Local time
Today, 14:31
Joined
Apr 3, 2007
Messages
751
I'd suggest that a linked table would be a preferable solution to burying the fact you're pulling data from an external source in a query (not 100% sure you can query in this manner, but I do know you can export like this).

With a linked table it's immediately apparent that you're importing/querying data from an external source and much easier to update if needed than having to go round and edit a bunch of queries.
 

khawar

AWF VIP
Local time
Today, 17:31
Joined
Oct 28, 2006
Messages
870
SELECT Table2.ename
FROM Table2 in 'F:\database.mdb' ;
 

Users who are viewing this thread

Top Bottom