I need to create a report base on betrieve database(with native connection). It contains two tables (ModA and ModB)with exactly the same structure but different information.
Mod A has the following field:
Bin_ID Type Qty Weight
A1 Normal 30 225
A19 Normal 10 100
Mod B has the following field:
Bin_ID Type Qty Weight
B11 Normal 30 225
A17 Normal 10 2253
If BinID and Type are the index within both table, how can I create a report similar to the following:
Bin_ID Type Qty Weight
A1 Normal 30 225
A19 Normal 10 100
B11 Normal 30 225
A17 Normal 10 2253
I know that it is possible to do that by using Union Join comments:
SELECT [DATABASE_A.FIELD] FROM DATABASE_A
UNION SELECT [DATABASE_B.FIELD] FROM DATABASE_B
However, becasue I need to access the database throught the ddf file, I wonder if it is any possible alternative solution. Any suggestion will be greatly apperciate.
Mod A has the following field:
Bin_ID Type Qty Weight
A1 Normal 30 225
A19 Normal 10 100
Mod B has the following field:
Bin_ID Type Qty Weight
B11 Normal 30 225
A17 Normal 10 2253
If BinID and Type are the index within both table, how can I create a report similar to the following:
Bin_ID Type Qty Weight
A1 Normal 30 225
A19 Normal 10 100
B11 Normal 30 225
A17 Normal 10 2253
I know that it is possible to do that by using Union Join comments:
SELECT [DATABASE_A.FIELD] FROM DATABASE_A
UNION SELECT [DATABASE_B.FIELD] FROM DATABASE_B
However, becasue I need to access the database throught the ddf file, I wonder if it is any possible alternative solution. Any suggestion will be greatly apperciate.