OK thank you very much. You've got me started and I tried and came up with this:
SELECT
virtuemart_product_id,
product_name,
product_s_desc,
FROM
#__virtuemart_products_da_dk
So far so good. That lists the products with ID, Name and short desctiption - But without all the information that I need - which are actually spread across 3 tables and not only in virtuemart_products_da_dk
Price is in the field product_price in the table virtuemart_product_prices
and
Height is in the field product_height in the table virtuemart_products
(not in virtuemart_products_da_dk)
So how can I combine showing ALLE fields from ALL TREE tables on a single line for each product?
Thanks again
Finn