I've got a question on retreiving data from sql database using inner joins.
here are the tables I'll retreive data from in the database:
pc_products -numeric data (like id, price, tax etc.)
pc_detail_products -details (like name and info)
phone_products -numeric
phone_detail_products -details
(both pc and phone product tables have the same fields. the detail_product tables have the same properties as well.)
**_
the result i need is, combination of some phone and pc products with joining their details from the xx_detail_products tables_**
normally i'd do this with sending the catalog name in a @catalog parameter, but i have no idea how this should be done using Llblgen.
I'd appreciate if you give some sample codes since i'm just a beginner to this.
thanks in advance.