B
Bob Quintal
=?Utf-8?B?dGFtZXJlbHJlZmFpZQ==?=
Create an UNION QUERY as follows
SELECT 1 AS SoucrceTable, * from table1
UNION ALL
SELECT 2 AS SoucrceTable, * from table2
UNION ALL
SELECT 3 AS SoucrceTable, * from table2
....
Until you have all the tables.
You can then open the query and sort by any field you want.
Don't make relations.I've imported about ten tables in Access 2003 from text files,
with no primary keys, but they are same exact design
(structure) in all of them. data maybe repeated with different
values.
let's say xyz is in table 1 his income is $200
and same xyz in table 2 has income $500
and so on with the other data
so I want to build a query on all these tables and group
clients with same name to show their data and compare them???
Although there isn't any relationship between them (how can I
make relation in this case?)
How can I do all this ???
Create an UNION QUERY as follows
SELECT 1 AS SoucrceTable, * from table1
UNION ALL
SELECT 2 AS SoucrceTable, * from table2
UNION ALL
SELECT 3 AS SoucrceTable, * from table2
....
Until you have all the tables.
You can then open the query and sort by any field you want.