S
SL
Hi!
I have been trying to produce a report in excel using ms query, but
not getting very far...
I have a MySQL database on an exernal server that contains a product
database. I can access this using e.g.
SELECT products_0.products_model, products_0.products_quantity
FROM catalog.products products_0
I also have a local MS Access database containing lists of products
sold,
SELECT Items.Description, Items.End
FROM `C:\some\folder\data`.Items Items
WHERE (Items.Description Like '%sgele010%')
ORDER BY Items.End
What I would like to be able to do is :
for each products_model, report the last data ("End") in Items where
it was sold, or indicate if it was not sold.
If they were different tables in the same database, it seems this
would be easy. How can I do it when they are from such different data
sources?
Thanks in advance for any help...
Rob
I have been trying to produce a report in excel using ms query, but
not getting very far...
I have a MySQL database on an exernal server that contains a product
database. I can access this using e.g.
SELECT products_0.products_model, products_0.products_quantity
FROM catalog.products products_0
I also have a local MS Access database containing lists of products
sold,
SELECT Items.Description, Items.End
FROM `C:\some\folder\data`.Items Items
WHERE (Items.Description Like '%sgele010%')
ORDER BY Items.End
What I would like to be able to do is :
for each products_model, report the last data ("End") in Items where
it was sold, or indicate if it was not sold.
If they were different tables in the same database, it seems this
would be easy. How can I do it when they are from such different data
sources?
Thanks in advance for any help...
Rob