i cant put the databases together
do you really mean 'two databases'?
Or do you mean two tables?
If you REALLY can't get all this data into one Table - you can write a Union query that combines the data from the two tables.
It would look something like this [not tested - just example] :
Code:
SELECT P_NUMBER, NUM_ACTIVE, DIE_SIZE
FROM DIODES
UNION ALL
SELECT P_NUMBER, NUM_ACTIVE, DIE_SIZE
FROM DIOCHIPS
What this will give you is something that looks like it is all in one table [which is how it should be, really].
I hope this helps.